int [] numbers = new int[5]; // 长度为5,元素类型为 int。 不同的格式:
names.GetLength(0); // 获得二维数组的横向长度 names.GetLength(1); // 获得二维数组的纵向长度。 |
|
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<TKey, TValue> Dictionary<string, string> dic = new Dictionary<string, string>(); dic.Add("name", "Tom"); dic.Add("age", "eighteen"); |
相关文章
- C# 中的集合(Array/ArrayList/List
/HashTable/Dictionary) - C#中的集合(HashTable与Array类)
- C# 中的集合(Array/ArrayList/List/HashTable/Dictionary)
- C#集合类(HashTable, Dictionary, ArrayList)与HashTable线程安全
- c#中Dictionary、ArrayList、Hashtable和数组 Array 的区别
- C# 集合类 Array,Arraylist,List,Hashtable,Dictionary,Stack,Queue学习资...
- C#集合类(HashTable, Dictionary, ArrayList)与HashTable线程安全
- [c#基础知识] C# 集合类 :(Array、 Arraylist、List、Hashtable、Dictionary、Stack、Queue)
- 【C#】数组与集合(LIst、ArrayList、HashTable、Dictionary)
- C# 集合类总结 :(Array、 Arraylist、List、Hashtable、Dictionary、Stack、Queue)