找到 2628 篇文章 关于 C#

获取 C# 集合中包含的元素数量

AmitDiwan
更新于 2019年12月10日 06:59:45

78 次浏览

要获取集合中包含的元素数量,代码如下所示:示例 实时演示using System; using System.Collections.ObjectModel; public class Demo {    public static void Main() {       Collection col = new Collection();       col.Add("Andy");       col.Add("Kevin");       col.Add("John");       col.Add("Kevin");       col.Add("Mary");       col.Add("Katie");       col.Add("Barry");       col.Add("Nathan");       col.Add("Mark");       Console.WriteLine("元素数量 = "+ col.Count);       Console.WriteLine("遍历集合...");       var enumerator = col.GetEnumerator();       while ... 阅读更多

获取或设置 C# 中列表中指定索引处的元素

AmitDiwan
更新于 2019年12月10日 06:55:43

108 次浏览

要获取或设置列表中指定索引处的元素,代码如下所示:示例 实时演示using System; using System.Collections.Generic; public class Demo {    public static void Main(String[] args) {       List list = new List();       list.Add("100");       list.Add("200");       list.Add("300");       list.Add("400");       list.Add("500");       list.Add("600");       list.Add("700");       list.Add("800");       list.Add("900");       list.Add("1000");       Console.WriteLine("索引 0 处的元素 = " + list[0]);       Console.WriteLine("索引 1 处的元素 ... 阅读更多

获取或设置 C# 中 StringCollection 中指定索引处的元素

AmitDiwan
更新于 2019年12月10日 06:47:59

65 次浏览

要获取或设置 StringCollection 中指定索引处的元素,代码如下所示:示例 实时演示using System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection strCol = new StringCollection();       String[] strArr = new String[] { "A", "B", "C", "D", "E", "F", "G", "H" };       Console.WriteLine("StringCollection 元素...");       foreach (string str in strArr) {          Console.WriteLine(str);       }       strCol.AddRange(strArr);       Console.WriteLine("第 5 个索引处的元素 = "+strCol[5]);       Console.WriteLine("字符串数量 ... 阅读更多

获取包含 C# 中哈希表中值的 ICollection

AmitDiwan
更新于 2019年12月10日 06:42:56

79 次浏览

要获取包含哈希表中值的 ICollection,代码如下所示:示例 实时演示using System; using System.Collections; public class Demo {    public static void Main() {       Hashtable hash = new Hashtable();       hash.Add("A", "Electronics");       hash.Add("B", "Appliances");       hash.Add("C", "Pet Supplies");       hash.Add("D", "Books");       hash.Add("E", "Toys");       hash.Add("F", "Footwear");       hash.Add("G", "Clothing");       ICollection col = hash.Keys;       foreach(string str in col)       Console.WriteLine(str + ": " + hash[str]);    } }输出这 ... 阅读更多

获取包含 C# 中哈希表中键的 ICollection

AmitDiwan
更新于 2019年12月10日 06:40:14

140 次浏览

要获取包含哈希表中键的 ICollection,代码如下所示:示例 实时演示using System; using System.Collections; public class Demo {    public static void Main() {       Hashtable hash = new Hashtable();       hash.Add("A", "Electronics");       hash.Add("B", "Appliances");       hash.Add("C", "Pet Supplies");       hash.Add("D", "Books");       hash.Add("E", "Toys");       hash.Add("F", "Footwear");       hash.Add("G", "Clothing");       ICollection col = hash.Keys;       foreach(string str in col)       Console.WriteLine(str + ": " + hash[str]);    } }输出这 ... 阅读更多

获取 C# 中 BitArray 中特定位置的位的值

AmitDiwan
更新于 2019年12月10日 06:36:57

141 次浏览

要获取 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 长度 = "+arr1.Length);       Console.WriteLine("BitArray1 第一个元素 = "+arr1.Get(0));       arr2[0] = false;       arr2[1] = true;       Console.WriteLine("BitArray2 长度 = "+arr2.Length);       Console.WriteLine("BitArray2 中的元素..."); ... 阅读更多

获取或设置 C# 中哈希表中与指定键关联的值

AmitDiwan
更新于 2019年12月10日 06:33:58

135 次浏览

要获取或设置与 C# 中哈希表中指定键关联的值,代码如下所示:示例 实时演示using System; using System.Collections; public class Demo {    public static void Main() {       Hashtable hash = new Hashtable();       hash.Add("1", "AB");       hash.Add("2", "BC");       hash.Add("3", "DE");       hash.Add("4", "EF");       hash.Add("5", "GH");       hash.Add("6", "IJ");       hash.Add("7", "KL");       hash.Add("8", "MN");       hash.Add("9", "OP");       hash.Add("10", "QR");       Console.WriteLine("键 3 处的值 = "+hash["3"]);   ... 阅读更多

获取或设置 C# 中 ArrayList 可以包含的元素数量

AmitDiwan
更新于 2019年12月10日 06:29:50

57 次浏览

要获取或设置 ArrayList 可以包含的元素数量,代码如下所示:示例 实时演示using System; using System.Collections; public class Demo {    public static void Main() {       ArrayList arrList = new ArrayList();       arrList.Add(25);       arrList.Add(50);       arrList.Add(75);       arrList.Add(100);       arrList.Add(125);       arrList.Add(150);       arrList.Add(175);       arrList.Add(200);       arrList.Add(225);       arrList.Add(250);       Console.WriteLine("ArrayList 中的元素...");       foreach(int i in arrList) {          Console.WriteLine(i); ... 阅读更多

获取 C# 中 SortedList 对象的值列表

AmitDiwan
更新于 2019年12月10日 06:26:14

75 次浏览

要获取SortedList对象的键值列表,代码如下所示:示例 在线演示using System; using System.Collections; public class Demo {    public static void Main(String[] args) {       SortedList list = new SortedList();       list.Add("A", 1);       list.Add("B ", 2);       list.Add("C ", 3);       list.Add("D", 4);       list.Add("E", 5);       list.Add("F", 6);       list.Add("G", 7);       list.Add("H", 8);       Console.WriteLine("SortedList 元素...");       foreach(DictionaryEntry d in list) {          Console.WriteLine(d.Key + ... 阅读更多

在C#中获取SortedList对象的键列表

AmitDiwan
更新于 2019年12月10日 06:22:04

638 次浏览

要获取SortedList对象的键列表,代码如下所示:示例 在线演示using System; using System.Collections; public class Demo {    public static void Main(String[] args) {       SortedList list1 = new SortedList();       list1.Add("One", 1);       list1.Add("Two ", 2);       list1.Add("Three ", 3);       list1.Add("Four", 4);       list1.Add("Five", 5);       list1.Add("Six", 6);       list1.Add("Seven ", 7);       list1.Add("Eight ", 8);       list1.Add("Nine", 9);       list1.Add("Ten", 10);       Console.WriteLine("SortedList1 元素...");     ... 阅读更多

广告