找到 2628 篇文章 关于 C#
93 次查看
要检查 StringDictionary 是否包含特定值,代码如下:示例 在线演示using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new 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 元素..."); foreach(DictionaryEntry d in strDict1){ Console.WriteLine(d.Key + " " + d.Value); } ... 阅读更多
100 次查看
要检查 StringDictionary 是否包含特定键,代码如下:示例 在线演示using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new 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 元素..."); foreach(DictionaryEntry d in strDict1){ Console.WriteLine(d.Key + " " + d.Value); } ... 阅读更多
133 次查看
要检查两个 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("SortedSet1 中的元素..."); foreach (int res in set1) { Console.WriteLine(res); } Console.WriteLine("SortedSet1 是否包含元素 400? = "+set1.Contains(400)); SortedSet set2 = new SortedSet(); set2.Add(100); ... 阅读更多
236 次查看
要检查 Hashtable 是否包含特定键,代码如下:示例using System; using System.Collections; public class Demo { public static void Main() public static void Main(){ Hashtable hash = new 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 是否为只读,代码如下:示例 在线演示using System; using 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){ ... 阅读更多
126 次查看
要检查 SortedSet 是否包含特定元素,代码如下:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet set1 = new SortedSet(); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); Console.WriteLine("SortedSet1 中的元素..."); foreach (string res in set1){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 是否包含元素 DE? = "+set1.Contains("DE")); SortedSet set2 = new SortedSet(); set2.Add("BC"); ... 阅读更多
206 次查看
要检查 Stack 是否包含元素,请使用 C# 的 Contains() 方法。以下为代码:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ Stack stack = new 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 中的元素:"); foreach(var val in stack){ Console.WriteLine(val); ... 阅读更多
89 次查看
要检查 SortedSet 对象是否为指定集合的真超集,代码如下:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet set1 = new SortedSet(); set1.Add(10); set1.Add(20); set1.Add(30); set1.Add(40); set1.Add(50); set1.Add(60); Console.WriteLine("SortedSet1 中的元素..."); foreach (int res in set1){ Console.WriteLine(res); } SortedSet set2 = new SortedSet(); ... 阅读更多
58 次查看
要检查 SortedSet 对象是否为指定集合的真子集,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示 { 公共静态 void Main(){ SortedSet set1 = new 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 in set1){ Console.WriteLine(res); } SortedSet set2 = new SortedSet(); ... 阅读更多
162 次查看
要检查 Hashtable 是否包含特定值,代码如下:示例 实时演示使用 System;使用 System.Collections;公共类演示 { 公共静态 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 键值对..."); 遍历(DictionaryEntry entry in ... 阅读更多