找到 2628 篇文章 关于 C#
82 次浏览
要获取 ListDictionary 中键值对的数量,代码如下所示:示例 在线演示using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary dict1 = new ListDictionary(); dict1.Add("A", "Books"); dict1.Add("B", "Electronics"); dict1.Add("C", "Smart Wearables"); dict1.Add("D", "Pet Supplies"); dict1.Add("E", "Clothing"); dict1.Add("F", "Footwear"); Console.WriteLine("ListDictionary1 元素..."); foreach(DictionaryEntry d in dict1){ Console.WriteLine(d.Key + " " + d.Value); } ListDictionary ... 阅读更多
215 次浏览
要从 LinkedList 中移除指定值的第一次出现,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ LinkedList
74 次浏览
要从集合中移除对象的第一次出现,代码如下所示:示例 在线演示using System; using System.Collections.ObjectModel; public class Demo { public static void Main(){ Collection
386 次浏览
要从 List 中移除一系列元素,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ List
331 次浏览
要从 HashSet 中移除指定的元素,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ HashSet
125 次浏览
要在 OrderedDictionary 集合中添加键值对,代码如下所示:示例 在线演示using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { OrderedDictionary dict1 = new OrderedDictionary(); dict1.Add("A", "Books"); dict1.Add("B", "Electronics"); dict1.Add("C", "Smart Wearables"); dict1.Add("D", "Pet Supplies"); dict1.Add("E", "Clothing"); dict1.Add("F", "Footwear"); Console.WriteLine("OrderedDictionary1 元素..."); foreach(DictionaryEntry d in dict1) { Console.WriteLine(d.Key + " " + d.Value); } ... 阅读更多
114 次浏览
要向 SortedSet 添加元素,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main() { SortedSet
75 次浏览
要获取 SortedList 对象中指定索引处的键,代码如下所示:示例 在线演示using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list1 = new SortedList(); list1.Add("One", 1); list1.Add("Two ", 2); list1.Add("Three ", 3); list1.Add("Four", 4); list1.Add("Five", 5); list1.Add("Six", 6); list1.Add("Seven ", 7); list1.Add("Eight ", 8); list1.Add("Nine", 9); list1.Add("Ten", 10); Console.WriteLine("SortedList1 元素..."); ... 阅读更多
220 次浏览
获取SortedList对象中指定键的索引,代码如下所示:示例 在线演示使用 System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list = new SortedList(); list.Add("One", "Finance"); list.Add("Two", "Marketing"); list.Add("Three", "Sales"); list.Add("Four", "Purchase"); list.Add("Five", "Operations"); list.Add("Six", "IT"); Console.WriteLine("SortedList 元素..."); foreach(DictionaryEntry d in list) { Console.WriteLine(d.Key + " " + d.Value); } ... 阅读更多
55 次浏览
获取SortedList对象中指定值的索引,代码如下所示:示例 在线演示using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list1 = new SortedList(); list1.Add("One", 1); list1.Add("Two ", 2); list1.Add("Three ", 3); list1.Add("Four", 4); list1.Add("Five", 5); list1.Add("Six", 6); list1.Add("Seven ", 7); list1.Add("Eight ", 8); list1.Add("Nine", 9); list1.Add("Ten", 10); Console.WriteLine("SortedList1 元素..."); ... 阅读更多