找到 2628 篇文章 关于 C#
73 次查看
要检查 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); } ... 阅读更多
304 次查看
要获取迭代 HashSet 的枚举器,代码如下:示例 实时演示 using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args) { HashSet set1 = new HashSet(); set1.Add("A"); set1.Add("B"); set1.Add("C"); set1.Add("D"); set1.Add("E"); set1.Add("F"); set1.Add("G"); set1.Add("H"); Console.WriteLine("HashSet1 中的元素..."); foreach (string res in set1) { Console.WriteLine(res); } HashSet set2 = new ... 阅读更多
194 次查看
要获取字符串的 HashCode,代码如下:示例 实时演示 using System; public class Demo { public static void Main(String[] args) { string str1 = "Akon"; string str2 = "Eminem"; Console.WriteLine("字符串 1 = "+str1); Console.WriteLine("字符串 1 的 HashCode = "+str1.GetHashCode()); Console.WriteLine("字符串 2 = "+str2); Console.WriteLine("字符串 2 的 HashCode = "+str2.GetHashCode()); Console.WriteLine("字符串 1 等于字符串 2:{0}", str1.Equals(str2)); } }输出这将产生以下输出:字符串 1 = Akon 字符串 1 的 HashCode = 416613838 字符串 2 = Eminem ... 阅读更多
198 次查看
要获取 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("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); list.Clear(); ... 阅读更多
76 次查看
要检查 HybridDictionary 是否具有固定大小,代码如下:示例 实时演示 using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static 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("是否 ... 阅读更多
118 次查看
要将新节点或值添加到 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("D"); list.AddLast("E"); list.AddLast("F"); Console.WriteLine("节点数 = " + list.Count); Console.WriteLine("LinkedList 中的元素..."); foreach (string res in list) { Console.WriteLine(res); } ... 阅读更多
160 次查看
要将元素添加到 ArrayList 的末尾,代码如下:示例 实时演示 using System; using System.Collections; public class Demo { public static void Main(String[] args) { ArrayList list = new ArrayList(); list.Add("Andy"); list.Add("Gary"); list.Add("Katie"); list.Add("Amy"); Console.WriteLine("ArrayList 中的元素..."); foreach (string res in list) { Console.WriteLine(res); } string[] strArr = { "John", "Jacob" }; list.AddRange(strArr); Console.WriteLine("ArrayList 中的元素...已更新"); ... 阅读更多
210 次查看
要将元素添加到 List 中,代码如下:示例 实时演示 using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args) { List list = new List(); list.Add("One"); list.Add("Two"); list.Add("Three"); list.Add("Four"); list.Add("Five"); list.Add("Six"); list.Add("Seven"); list.Add("Eight"); Console.WriteLine("枚举器迭代遍历列表元素..."); List.Enumerator demoEnum = list.GetEnumerator(); while (demoEnum.MoveNext()) { string res = demoEnum.Current; ... 阅读更多
95 次查看
要检查 SortedDictionary 是否包含指定的键,代码如下所示 -示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Generic;public class Demo { public static void Main() { SortedDictionary sortedDict = new SortedDictionary(); sortedDict.Add(100, "Mobile"); sortedDict.Add(200, "Laptop"); sortedDict.Add(300, "Desktop"); sortedDict.Add(400, "Speakers"); sortedDict.Add(500, "Headphone"); sortedDict.Add(600, "Earphone"); Console.WriteLine("SortedDictionary 键值对..."); IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator(); while (demoEnum.MoveNext()) Console.WriteLine("Key = " + demoEnum.Key + ", Value = ... 阅读更多
85 次查看
要检查 Hashtable 是否已同步,代码如下所示 -示例 实时演示使用 System;使用 System.Collections;public class Demo { public static void Main() { Hashtable hash = new Hashtable(); hash.Add("One", "Katie"); hash.Add("Two", "John"); hash.Add("Three", "Barry"); hash.Add("Four", ""); hash.Add("Five", "Harry"); hash.Add("Six", "F"); hash.Add("Seven", "Tom"); hash.Add("Eight", "Andy"); hash.Add("Nine", "I"); hash.Add("Ten", "Tim"); Console.WriteLine("Hashtable 键值对..."); foreach(DictionaryEntry entry in hash) { ... 阅读更多