找到 2628 篇文章 关于 C#
81 次查看
要获取 SortedSet 中的最小值,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态无效 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;公共类演示 { 公共静态无效 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;公共类演示 { 公共静态无效 Main() { HybridDictionary dict1 = new HybridDictionary(); dict1.Add("A", "书籍"); dict1.Add("B", "电子产品"); dict1.Add("C", "智能可穿戴设备"); dict1.Add("D", "宠物用品"); dict1.Add("E", "服装"); dict1.Add("F", "鞋类"); Console.WriteLine("HybridDictionary1 元素..."); foreach(DictionaryEntry d in dict1) { Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("键值对数量 ... 阅读更多
127 次查看
要从 Stack 中移除所有对象,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态无效 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;公共类演示 { 公共静态无效 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;公共类演示 { 公共静态无效 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;公共类演示 { 公共静态无效 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;公共类演示 { 公共静态无效 Main() { ListDictionary listDict = new ListDictionary(); listDict.Add("1", "笔记本电脑"); listDict.Add("2", "平板电脑"); listDict.Add("3", "台式电脑"); listDict.Add("4", "扬声器"); listDict.Add("5", "耳机"); listDict.Add("6", "头戴式耳机"); ICollection col = listDict.Keys; foreach(String s in col) { Console.WriteLine(s); } } }输出这将产生以下输出:1 ... 阅读更多
67 次查看
移除LinkedList开头节点的代码如下:示例 在线演示使用 System; using System.Collections.Generic; public class Demo { public static void Main(){ LinkedList
67 次查看
要获取StringDictionary中的键值对数量,代码如下:示例 在线演示使用 System; using System.Collections; using 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 + ... 阅读更多