📜  C#|在SortedList对象中获取值

📅  最后修改于: 2021-05-29 19:16:43             🧑  作者: Mango

SortedList.Values属性用于获取SortedList对象中的值。

句法:

public virtual System.Collections.ICollection Values { get; }

属性值:一个ICollection对象,其中包含SortedList对象中的值。

下面的程序说明了上面讨论的属性的用法:

范例1:

// C# code to get an ICollection containing
// the values in the SortedList
using System;
using System.Collections;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedList
        SortedList mylist = new SortedList();
  
        // Adding elements in SortedList
        mylist.Add("g", "geeks");
        mylist.Add("c", "c++");
        mylist.Add("d", "data structures");
        mylist.Add("q", "quiz");
  
        // Get a collection of the values
        ICollection c = mylist.Values;
  
        // Displaying the contents
        foreach(string str in c)
            Console.WriteLine(str + mylist[str]);
    }
}
输出:
c++
data structures
geeks
quiz

范例2:

// C# code to get an ICollection containing
// the values in the SortedList
using System;
using System.Collections;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedList
        SortedList mylist = new SortedList();
  
        // Adding elements in SortedList
        mylist.Add("India", "Country");
        mylist.Add("Chandigarh", "City");
        mylist.Add("Mars", "Planet");
        mylist.Add("China", "Country");
  
        // Get a collection of the values
        ICollection c = mylist.Values;
  
        // Displaying the contents
        foreach(string str in c)
            Console.WriteLine(str + mylist[str]);
    }
}
输出:
City
Country
Country
Planet

笔记:

  • ICollection对象是SortedList对象的值的只读视图。对基础SortedList的修改将立即反映在ICollection中。
  • ICollection的元素以与SortedList的值相同的顺序排序。
  • 此属性类似于GetValueList方法,但返回ICollection对象而不是IList对象。
  • 此方法是O(1)操作。

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.sortedlist.values?view=netframework-4.7.2