C# 中的集合(Array/ArrayList/List/HashTable/Dictionary)
int [] numbers = new int[5]; // 长度为5,元素类型为 int。 不同的格式: |
|
System.Collections.ArrayList ArrayList al = new ArrayList(); al.Add(5); al.Add("Hello Tom"); |
System.Collections.Generic.List<T> List<int> intList = new List<int>(); intList.Add(500); intList.AddRange(new int[]{1,100}; intList.Insert(1, 1000); cw(intList.Contains(100)); cw(intList.indexOf(10)); |
System.Collections.HashTable HashTable ht = new HashTable(); ht.Add("name", "Tom"); ht.Add("age", 18); |
System.Collections.Generic.Dictionary Dictionary<string, string> dic = new Dictionary<string, string>(); dic.Add("name", "Tom"); dic.Add("age", "eighteen"); |
推荐阅读
-
【转载】C#中ArrayList集合类和List集合类的比较
-
C#中数组、ArrayList、List、Dictionary的用法与区别浅析(存取数据)
-
C#常见的几种集合 ArrayList,Hashtable,List
,Dictionary 遍历方法对比 -
C# 中的集合(Array/ArrayList/List
/HashTable/Dictionary) -
C# ArrayList、HashSet、HashTable、List、Dictionary的区别详解
-
【转载】C#中ArrayList集合类和List集合类的比较
-
C#中数组、ArrayList、List、Dictionary的用法与区别浅析(存取数据)
-
C#常见的几种集合 ArrayList,Hashtable,List
,Dictionary 遍历方法对比 -
简单介绍C#中数组、ArrayList、List、Dictionary的用法与区别
-
C# 中的集合(Array/ArrayList/List
/HashTable/Dictionary)