找到 2628 篇文章 关于 C#
81 次查看
要获取 SortedSet 中的最小值,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类 Demo { 公共静态 void Main(){ SortedSet set1 = new SortedSet(); set1.Add("AB"); set1.Add("BC"); set1.Add("CD"); set1.Add("EF"); Console.WriteLine("SortedSet1 中的元素..."); foreach (string res in set1){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 中的最大元素 = " + set1.Max); Console.WriteLine("SortedSet1 中的最小元素 = " + set1.Min); SortedSet ... 阅读更多
291 次查看
要获取一个迭代器,该迭代器遍历 Hashtable,代码如下:示例 实时演示使用 System;使用 System.Collections;公共类 Demo { 公共静态 void Main(){ Hashtable hash = new Hashtable(10); hash.Add("1", "A"); hash.Add("2", "B"); hash.Add("3", "C"); hash.Add("4", "D"); hash.Add("5", "E"); hash.Add("6", "F"); hash.Add("7", "G"); hash.Add("8", "H"); hash.Add("9", "I"); hash.Add("10", "J"); Console.WriteLine("Hashtable 的键值对..."); foreach(DictionaryEntry entry in ... 阅读更多
62 次查看
要从 HybridDictionary 中删除所有条目,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类 Demo { 公共静态 void Main(){ HybridDictionary dict1 = new HybridDictionary(); 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("HybridDictionary1 元素..."); foreach(DictionaryEntry d in dict1){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("键值对的数量 ... 阅读更多
127 次查看
要从 Stack 中删除所有对象,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类 Demo { 公共静态 void Main(){ Stack stack = new Stack(); stack.Push("A"); stack.Push("B"); stack.Push("C"); stack.Push("D"); stack.Push("E"); stack.Push("F"); stack.Push("G"); stack.Push("H"); Console.WriteLine("元素的数量 = "+stack.Count); Console.WriteLine("Stack 中的元素..."); foreach (string res in stack){ Console.WriteLine(res); } ... 阅读更多
94 次查看
要获取 SortedSet 中的最大值,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类 Demo { 公共静态 void Main(){ SortedSet set1 = new SortedSet(); set1.Add("AB"); set1.Add("BC"); set1.Add("CD"); set1.Add("EF"); Console.WriteLine("SortedSet1 中的元素..."); foreach (string res in set1){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 中的最大元素 = " + set1.Max); SortedSet set2 = new SortedSet(); set2.Add("BC"); ... 阅读更多
243 次查看
要获取 LinkedList 的最后一个节点,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类 Demo { 公共静态 void Main(){ LinkedList list = new LinkedList(); list.AddLast("A"); list.AddLast("B"); list.AddLast("C"); list.AddLast("D"); list.AddLast("E"); list.AddLast("F"); list.AddLast("G"); list.AddLast("H"); list.AddLast("I"); list.AddLast("J"); Console.WriteLine("节点的数量 = " + list.Count); Console.WriteLine("第一个节点 = "+list.First.Value); Console.WriteLine("最后一个节点 = "+list.Last.Value); ... 阅读更多
84 次查看
要获取包含 HybridDictionary 中值的 ICollection,代码如下:示例 实时演示使用 System;使用 System.Collections.Specialized;公共类 Demo { 公共静态 void Main(){ HybridDictionary dict = new HybridDictionary(); dict.Add("One", "Katie"); dict.Add("Two", "Andy"); dict.Add("Three", "Gary"); dict.Add("Four", "Mark"); dict.Add("Five", "Marie"); dict.Add("Six", "Sam"); dict.Add("Seven", "Harry"); dict.Add("Eight", "Kevin"); dict.Add("Nine", "Ryan"); String[] strArr = new String[dict.Count]; dict.Values.CopyTo(strArr, 0); for (int i ... 阅读更多
81 次查看
要获取包含 ListDictionary 中键的 ICollection,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类 Demo { 公共静态 void Main(){ ListDictionary listDict = new ListDictionary(); listDict.Add("1", "Laptop"); listDict.Add("2", "Tablet"); listDict.Add("3", "Desktop"); listDict.Add("4", "Speaker"); listDict.Add("5", "Earphone"); listDict.Add("6", "Headphone"); ICollection col = listDict.Keys; foreach(String s in col){ Console.WriteLine(s); } } }输出这将产生以下输出:1 ... 阅读更多
67 次查看
删除LinkedList开头节点的代码如下:示例 在线演示使用 System;使用 System.Collections.Generic;public class Demo { public static void Main(){ LinkedList list = new LinkedList(); list.AddLast("One"); list.AddLast("Two"); list.AddLast("Three"); list.AddLast("Three"); list.AddLast("Three"); list.AddLast("Four"); Console.WriteLine("节点数量 = " + list.Count); Console.WriteLine("LinkedList中的元素...(枚举器遍历LinkedList)"); LinkedList.Enumerator demoEnum = list.GetEnumerator(); while (demoEnum.MoveNext()) { string res ... 阅读更多
67 次查看
获取StringDictionary中键值对数量的代码如下:示例 在线演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;public class Demo { public static void Main(){ StringDictionary strDict = new StringDictionary(); strDict.Add("1", "One"); strDict.Add("2", "Two"); strDict.Add("3", "Three"); strDict.Add("4", "Four"); Console.WriteLine("StringDictionary键值对..."); IEnumerator demoEnum = strDict.GetEnumerator(); DictionaryEntry d; while (demoEnum.MoveNext()) { d = (DictionaryEntry)demoEnum.Current; Console.WriteLine("键 = " + d.Key + ... 阅读更多