什么是C#中SortedList类的Item属性?
排序列表是数组和哈希表的组合。它包含可以使用键或索引访问的项列表。
获取并设置与SortedList中特定键关联的值。
你还可以使用Item属性添加新元素。
如果键不存在,则可以像这样包括在内。
myCollection["myNonexistentKey"] = myValue
如果键已存在,则它将用新的键和值覆盖该键。
以下是一个示例,了解如何在C#中使用SorteList类的Item属性。
示例
using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { SortedList s = new SortedList(); s.Add("S001", "Jack"); s.Add("S002", "Henry"); s["S003"] = "Brad"; // get a collection of the keys. ICollection key = s.Keys; foreach (string k in key) { Console.WriteLine(k + ": " + s[k]); } } } }
输出
S001: Jack S002: Henry S003: Brad
广告