2014年2月15日
摘要: 来自:http://blog.csdn.net/jiayanhui2877/article/details/7623845C# 泛型集合之非泛型集合类与泛型集合类的对应:ArrayList对应ListHashTable对应DictionaryQueue对应QueueStack对应StackSortedList对应SortedListC# 集合类 Array Arraylist List Hashtable Dictionary Stack Queue 1.数组是固定大小的,不能伸缩。虽然System.Array.Resize这个泛型方法可以重置数组大小, 但是该方法是重新创建新设置大小的数.. 阅读全文
posted @ 2014-02-15 11:30 jin_qi_er 阅读(656) 评论(0) 推荐(0) 编辑
摘要: using System.Collections;class Program {//做个比较 static void Main(string[] args) { //new对象 Cls a1 = new Cls(); Cls a2 = new Cls(); //存放对象 List testfanxing = new List(); testfanxing.Add(a1); ArrayList testarra... 阅读全文
posted @ 2014-02-15 11:20 jin_qi_er 阅读(281) 评论(0) 推荐(0) 编辑