找到 2628 篇文章 关于 C#

C# 中的 Queue.CopyTo() 方法

AmitDiwan
更新于 2019-12-04 09:37:29

195 次浏览

C# 中的 Queue.CopyTo() 方法用于将 Queue 元素复制到现有的单维数组中,从指定的数组索引开始。语法语法如下:public virtual void CopyTo (Array arr, int index);上面,参数 arr 是从 Queue 复制元素的目标单维数组。index 参数是数组中复制开始的基于零的索引。示例让我们来看一个示例: 在线演示using System; using System.Collections.Generic; public class Demo {    public static void Main() {       Queue queue = new Queue();       queue.Enqueue(100);       ... 阅读更多

C# 中带示例的 Array.BinarySearch(Array, Int32, Int32, Object) 方法

AmitDiwan
更新于 2019-12-04 09:30:33

631 次浏览

C# 中的 Array.BinarySearch() 方法用于在排序后的单维数组的元素范围内搜索值,使用每个数组元素和指定值实现的 IComparable 接口。注意:它在排序后的数组中搜索。语法语法如下:public static int BinarySearch (Array arr, int index, int len, object val);上面,参数 arr 是要搜索的一维数组,index 是要搜索范围的起始索引,len 是搜索的长度。val 参数是要搜索的对象。示例让我们来看一个示例: ... 阅读更多

检查 C# 中的 SortedList 对象是否包含特定值

AmitDiwan
更新于 2019-12-04 08:20:54

112 次浏览

要检查 SortedList 对象是否包含特定值,代码如下:示例 在线演示using System; using System.Collections; public class Demo {    public static void Main(){       SortedList list = new SortedList();       list.Add("1", "One");       list.Add("2", "Two");       list.Add("3", "Three");       list.Add("4", "Four");       list.Add("5", "Five");       list.Add("6", "Six");       list.Add("7", "Seven");       list.Add("8", "Eight");       Console.WriteLine("SortedList 的键和值....");       foreach(DictionaryEntry k in list )       Console.WriteLine("Key: {0}, Value: {1}", ... 阅读更多

获取在 C# 中迭代 List 的枚举器

AmitDiwan
更新于 2019-12-04 08:18:21

461 次浏览

要获取迭代 List 的枚举器,代码如下:示例 在线演示using System; using System.Collections.Generic; public class Demo {    public static void Main(String[] args){       List list1 = new List();       list1.Add("One");       list1.Add("Two");       list1.Add("Three");       list1.Add("Four");       list1.Add("Five");       Console.WriteLine("List1 中的元素...");       foreach (string res in list1){          Console.WriteLine(res);       }       List list2 = new List();       list2.Add("India");       list2.Add("US");       list2.Add("UK"); ... 阅读更多

获取 C# 中 LinkedList 的第一个节点

AmitDiwan
更新于 2019-12-04 08:13:04

305 次浏览

要获取 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();       Console.WriteLine("Count ... 阅读更多

获取包含 C# 中 OrderedDictionary 中值的 ICollection

AmitDiwan
更新于 2019-12-04 08:08:06

470 次浏览

要获取包含 OrderedDictionary 中值的 ICollection,代码如下:示例 在线演示using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       OrderedDictionary dict = new OrderedDictionary();       dict.Add("1", "One");       dict.Add("2", "Two");       dict.Add("3", "Three");       dict.Add("4", "Four");       dict.Add("5", "Five");       dict.Add("6", "Six");       dict.Add("7", "Seven");       dict.Add("8", "Eight");       ICollection col = dict.Values;       String[] strVal = new String[dict.Count];       col.CopyTo(strVal, 0);     ... 阅读更多

检查 C# 中的 Hashtable 是否等于另一个 Hashtable

AmitDiwan
更新于 2019-12-04 08:03:47

170 次浏览

要检查 Hashtable 是否等于另一个 Hashtable,代码如下:示例 在线演示using System; using System.Collections; public class Demo {    public static void Main(){       Hashtable hash1 = new Hashtable();       hash1.Add("1", "Kevin");       hash1.Add("2", "Steve");       hash1.Add("3", "Tim");       hash1.Add("4", "Gary");       hash1.Add("5", "Kevin");       hash1.Add("6", "Steve");       hash1.Add("7", "Tom");       hash1.Add("8", "Stephen");       Console.WriteLine("HashSet1...");       ICollection key = hash1.Keys;       foreach (string k in key) {       ... 阅读更多

检查 C# 中的 HashSet 是否是指定集合的子集

AmitDiwan
更新于 2019-12-04 08:00:02

83 次浏览

要检查 HashSet 是否是指定集合的子集,代码如下:示例 在线演示using System; using System.Collections.Generic; public class Demo {    public static void Main(){       HashSet set1 = new HashSet();       set1.Add("EF");       set1.Add("OP");       Console.WriteLine("HashSet1 中的元素");       foreach(string val in set1){          Console.WriteLine(val);       }       HashSet set2 = new HashSet();       set2.Add("KL");       set2.Add("MN");       set2.Add("OP");       set2.Add("QR");       Console.WriteLine("HashSet2 中的元素");   ... 阅读更多

检查 C# 中两个 BitArray 对象是否相等

AmitDiwan
更新于 2019-12-04 07:55:59

275 次浏览

要检查两个 BitArray 对象是否相等,代码如下:示例 在线演示using System; using System.Collections; public class Demo {    public static void Main(){       BitArray arr1 = new BitArray(2);       BitArray arr2 = new BitArray(2);       arr1[0] = false;       arr1[1] = true;       Console.WriteLine("BitArray1 中的元素...");       foreach (bool res in arr1){          Console.WriteLine(res);       }       arr2[0] = false;       arr2[1] = true;       Console.WriteLine("BitArray2 中的元素...");       foreach ... 阅读更多

获取 C# 中 StringDictionary 中的键集合

AmitDiwan
更新于 2019-12-04 07:53:04

89 次浏览

要获取StringDictionary中的键集合,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类演示 {    公共静态无效主(){       StringDictionary strDict1 = 新 StringDictionary();       strDict1.Add("U", "电子产品");       strDict1.Add("V", "玩具");       strDict1.Add("W", "书籍");       strDict1.Add("X", "配件");       Console.WriteLine("StringDictionary1 元素...");       针对每个(DictionaryEntry d 在 strDict1 中){          Console.WriteLine(d.Key + " " + d.Value);       }       Console.WriteLine("StringDictionary1 是否包含键 G?" + strDict1.ContainsKey("G"));       StringDictionary strDict2 = 新 ... 阅读更多

广告