找到 2628 篇文章 适用于 C#
93 次浏览
要检查 StringDictionary 是否包含特定值,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类演示 { 公共静态 void Main(){ StringDictionary strDict1 = 新 StringDictionary(); strDict1.Add("A", "John"); strDict1.Add("B", "Andy"); strDict1.Add("C", "Tim"); strDict1.Add("D", "Ryan"); strDict1.Add("E", "Kevin"); strDict1.Add("F", "Katie"); strDict1.Add("G", "Brad"); Console.WriteLine("StringDictionary1 元素..."); 针对(DictionaryEntry d 在 strDict1 中){ Console.WriteLine(d.Key + " " + d.Value); } ... 阅读更多
100 次浏览
要检查 StringDictionary 是否包含特定键,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类演示 { 公共静态 void Main(){ StringDictionary strDict1 = 新 StringDictionary(); strDict1.Add("A", "John"); strDict1.Add("B", "Andy"); strDict1.Add("C", "Tim"); strDict1.Add("D", "Ryan"); strDict1.Add("E", "Kevin"); strDict1.Add("F", "Katie"); strDict1.Add("G", "Brad"); Console.WriteLine("StringDictionary1 元素..."); 针对(DictionaryEntry d 在 strDict1 中){ Console.WriteLine(d.Key + " " + d.Value); } ... 阅读更多
133 次浏览
要检查两个 SortedSet 对象是否相等,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态 void Main(){ SortedSet set1 = 新 SortedSet(); set1.Add(100); set1.Add(200); set1.Add(300); set1.Add(400); Console.WriteLine("SortedSet1 中的元素..."); 针对(int res 在 set1 中){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 是否包含元素 400?= " + set1.Contains(400)); SortedSet set2 = 新 SortedSet(); set2.Add(100); ... 阅读更多
236 次浏览
要检查 Hashtable 是否包含特定键,代码如下:示例使用 System;使用 System.Collections;公共类演示 { 公共静态 void Main() 公共静态 void Main(){ Hashtable hash = 新 Hashtable(); hash.Add("One", "Katie"); hash.Add("Two", "John"); hash.Add("Three", "Barry"); hash.Add("Four", "Mark"); hash.Add("Five", "Harry"); hash.Add("Six", "Nathan"); hash.Add("Seven", "Tom"); hash.Add("Eight", "Andy"); hash.Add("Nine", "Illeana"); hash.Add("Ten", "Tim"); Console.WriteLine("Hashtable 键值对..."); ... 阅读更多
90 次浏览
要检查 Hashtable 是否为只读,代码如下:示例 实时演示使用 System;使用 System.Collections;公共类演示 { 公共静态 void Main(){ Hashtable hash = 新 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 键值对..."); 针对(DictionaryEntry entry 在 hash 中){ ... 阅读更多
126 次浏览
要检查 SortedSet 是否包含特定元素,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态 void Main(){ SortedSet set1 = 新 SortedSet(); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); Console.WriteLine("SortedSet1 中的元素..."); 针对(字符串 res 在 set1 中){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 是否包含元素 DE?= " + set1.Contains("DE")); SortedSet set2 = 新 SortedSet(); set2.Add("BC"); ... 阅读更多
206 次浏览
要检查 Stack 是否有元素,请使用 C# Contains() 方法。以下是代码:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态 void Main(){ Stack stack = 新 Stack(); stack.Push(100); stack.Push(150); stack.Push(175); stack.Push(200); stack.Push(225); stack.Push(250); stack.Push(300); stack.Push(400); stack.Push(450); stack.Push(500); Console.WriteLine("Stack 中的元素:"); 针对(var val 在 stack 中){ Console.WriteLine(val); ... 阅读更多
89 次浏览
要检查 SortedSet 对象是否为指定集合的真超集,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态 void Main(){ SortedSet set1 = 新 SortedSet(); set1.Add(10); set1.Add(20); set1.Add(30); set1.Add(40); set1.Add(50); set1.Add(60); Console.WriteLine("SortedSet1 中的元素..."); 针对(int res 在 set1 中){ Console.WriteLine(res); } SortedSet set2 = 新 SortedSet(); ... 阅读更多
58 次浏览
要检查 SortedSet 对象是否为指定集合的真子集,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态 void Main(){ SortedSet set1 = 新 SortedSet(); set1.Add(20); set1.Add(40); set1.Add(60); set1.Add(80); set1.Add(100); set1.Add(120); set1.Add(140); Console.WriteLine("SortedSet1 中的元素..."); 针对(int res 在 set1 中){ Console.WriteLine(res); } SortedSet set2 = 新 SortedSet(); ... 阅读更多
162 次浏览
要检查哈希表是否包含特定值,代码如下 - 示例 实时演示使用 System;使用 System.Collections;public class Demo { public static void Main(){ Hashtable hash = new Hashtable(); 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 ... 阅读更多