找到 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 list = new LinkedList(); list.AddLast("A"); list.AddLast("B"); list.AddLast("C"); list.AddLast("A"); list.AddLast("E"); list.AddLast("F"); list.AddLast("A"); list.AddLast("H"); list.AddLast("A"); list.AddLast("j"); Console.WriteLine("节点数量 = " + list.Count); Console.WriteLine("LinkedList 中的元素... (枚举器遍历 LinkedList)"); ... 阅读更多
74 次浏览
要从集合中移除对象的第一次出现,代码如下:示例 在线演示using System; using System.Collections.ObjectModel; public class Demo { public static void Main(){ Collection col = new Collection(); col.Add("Andy"); col.Add("Kevin"); col.Add("John"); col.Add("Nathan"); col.Add("Nathan"); col.Add("Katie"); col.Add("Barry"); col.Add("Nathan"); col.Add("Mark"); Console.WriteLine("元素数量 = "+ col.Count); Console.WriteLine("遍历集合..."); var enumerator = col.GetEnumerator(); while ... 阅读更多
386 次浏览
要从 List 中移除一系列元素,代码如下:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ List list1 = new List(); list1.Add("One"); list1.Add("Two"); list1.Add("Three"); list1.Add("Four"); list1.Add("Five"); Console.WriteLine("List1 中的元素..."); foreach (string res in list1){ Console.WriteLine(res); } List list2 = new List(); list2.Add("India"); list2.Add("US"); list2.Add("UK"); ... 阅读更多
331 次浏览
要从 HashSet 中移除指定元素,代码如下:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ HashSet set1 = new HashSet(); set1.Add("AB"); set1.Add("CD"); set1.Add("EF"); set1.Add("AB"); set1.Add("IJ"); set1.Add("KL"); set1.Add("EF"); set1.Add("OP"); Console.WriteLine("HashSet1 中的元素"); foreach(string val in set1){ Console.WriteLine(val); } HashSet set2 = new 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 set1 = new SortedSet(); set1.Add(100); set1.Add(200); set1.Add(300); set1.Add(400); Console.WriteLine("SortedSet 中的元素..."); foreach (int res in set1) { Console.WriteLine(res); } Console.WriteLine("SortedSet 是否包含元素 500? = "+set1.Contains(500)); } }输出这将产生以下输出:SortedSet 中的元素... 100 200 300 400 SortedSet 是否包含元素 500? = False示例让我们... 阅读更多
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对象中获取指定键的索引,代码如下:示例 在线演示 using 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元素..."); ... 阅读更多