找到 2628 篇文章 适用于 C#
76 次浏览
要将集合元素复制到数组,代码如下:示例 实时演示使用 System;使用 System.Collections.ObjectModel;公共类演示{ 公共静态无效 Main(){ 集合 col = 新集合(); col.Add("One"); col.Add("Two"); col.Add("Three"); col.Add("Four"); col.Add("Five"); col.Add("Six"); col.Add("Seven"); col.Add("Eight"); Console.WriteLine("集合...."); foreach(字符串 str in col){ Console.WriteLine(str); } 字符串[] strArr = 新字符串[10]; col.CopyTo(strArr, 2); ... 阅读更多
205 次浏览
要将 BitArray 元素复制到数组,代码如下:示例 实时演示使用 System;使用 System.Collections;公共类演示{ 公共静态无效 Main(){ BitArray arr = 新 BitArray(2); arr[0] = false; arr[1] = true; Console.WriteLine("BitArray 中的元素..."); foreach (布尔 res in arr){ Console.WriteLine(res); } 布尔[] boolArr = 新布尔[2]; boolArr[0] = true; boolArr[1] = false; arr.CopyTo(boolArr, 0); Console.WriteLine("数组..."); ... 阅读更多
155 次浏览
要将堆栈复制到数组,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示{ 公共静态无效 Main(){ 堆栈 stack = 新堆栈(); stack.Push(10); stack.Push(20); stack.Push(30); stack.Push(40); stack.Push(50); stack.Push(60); stack.Push(70); stack.Push(80); stack.Push(90); stack.Push(100); Console.WriteLine("显示堆栈..."); foreach(整数 val in stack){ Console.WriteLine(val); } 整数[] ... 阅读更多
282 次浏览
要将整个 LinkedList 复制到数组,代码如下:示例 实时演示使用 System;使用 System.Collections.Generic;公共类演示{ 公共静态无效 Main(){ LinkedList 列表 = 新 LinkedList(); list.AddLast(100); list.AddLast(200); list.AddLast(300); 整数[] strArr = 新整数[5]; list.CopyTo(strArr, 0); foreach(整数 str in strArr){ Console.WriteLine(str); } } }输出这将产生以下输出:100 200 300 0 0示例现在让我们看看另一个示例: 实时演示使用 System;使用 System.Collections.Generic;公共类 ... 阅读更多
213 次浏览
要将集合的元素复制到 ArrayList 中的元素范围内,代码如下:示例 实时演示使用 System;使用 System.Collections;公共类演示{ 公共静态无效 Main(){ ArrayList arrList = 新 ArrayList(); arrList.Add("A"); arrList.Add("B"); arrList.Add("C"); arrList.Add("D"); Console.WriteLine("ArrayList 元素..."); for (整数 i = 0;i < arrList.Count;i++) { Console.WriteLine("" + arrList[i]); } 字符串[] str = { "Demo", "Text" }; arrList.SetRange(0, ... 阅读更多
76 次浏览
要将 StringDictionary 复制到指定索引处的数组,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类演示{ 公共静态无效 Main(){ StringDictionary strDict = 新 StringDictionary(); strDict.Add("1", "SUV"); strDict.Add("2", "AUV"); strDict.Add("3", "电动汽车"); strDict.Add("4", "公用事业车辆"); strDict.Add("5", "掀背车"); strDict.Add("6", "紧凑型汽车"); strDict.Add("7", "MUV"); strDict.Add("8", "跨界车"); strDict.Add("9", "敞篷车"); strDict.Add("10", "四轮车"); DictionaryEntry[] arr = { 新 DictionaryEntry(), ... 阅读更多
78 次浏览
要将 StringCollection 复制到数组的指定索引处,代码如下:示例 实时演示使用 System;使用 System.Collections.Specialized;公共类演示{ 公共静态无效 Main(){ StringCollection strCol = 新 StringCollection(); 字符串[] strArr = 新字符串[] { "Tim", "Tom", "Sam", "Mark", "Katie", "Jacob"}; Console.WriteLine("元素..."); for (整数 i = 0;i < strArr.Length;i++) { Console.WriteLine(strArr[i]); } strCol.AddRange(strArr); 字符串[] arr = 新字符串[strCol.Count]; strCol.CopyTo(arr, 0); Console.WriteLine("元素...复制后 ... 阅读更多
85 次浏览
要将 OrderedDictionary 元素复制到指定索引处的 Array 实例,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类演示{ 公共静态无效 Main(){ OrderedDictionary dict = 新 OrderedDictionary(); dict.Add(1, "Harry"); dict.Add(2, "Mark"); dict.Add(3, "John"); dict.Add(4, "Jacob"); dict.Add(5, "Tim"); Console.WriteLine("OrderedDictionary 元素..."); foreach(DictionaryEntry d in dict){ Console.WriteLine(d.Key + " " + d.Value); } DictionaryEntry[] dictArr = 新 DictionaryEntry[dict.Count]; ... 阅读更多
65 次浏览
将ListDictionary复制到指定索引处的数组实例,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类 Demo { 公共静态 void Main(){ ListDictionary dict = new ListDictionary(); dict.Add(1, "Harry"); dict.Add(2, "Mark"); dict.Add(3, "John"); dict.Add(4, "Jacob"); dict.Add(5, "Tim"); dict.Add(6, "Sam"); dict.Add(7, "Tom"); dict.Add(8, "Kevin"); Console.WriteLine("ListDictionary 元素..."); foreach(DictionaryEntry d in dict){ Console.WriteLine(d.Key + " " + ... 阅读更多
65 次浏览
要将指定的键和值添加到 HybridDictionary,代码如下:示例 实时演示使用 System;使用 System.Collections;使用 System.Collections.Specialized;公共类 Demo { 公共静态 void Main(){ HybridDictionary dict = new HybridDictionary(); dict.Add("A", "Bags"); dict.Add("B", "Electronics"); dict.Add("C", "Smart Wearables"); dict.Add("D", "Pet Supplies"); Console.WriteLine("HybridDictionary 元素..."); foreach(DictionaryEntry d in dict){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("HybridDictionary 是否具有固定大小?= "+dict.IsFixedSize); ... 阅读更多