asp.net 所有集合
1. ArrayList添加项时动态改变太小,最合适存储经常要改变的数据
2. HashTable是对数据(键和值)的集合
HashTable ht=new HashTable();
ht["键值"]=所保存的信息;
如:ht[0]="abc"; textbox1.text=ht[0]; //这textbox1.text就等于 "abc"
也可以: ht["id"]="abc"; textbox1.text=ht[0]; //这textbox1.text就等于"abc"
和session用法一样的哈3.Stack(先进后出) 和 Queue (先进先出)
Queue q = new Queue();
q.Enqueue(0);
q.Enqueue(1);
TextBox1.Text = q.Dequeue().ToString(); // 值为0Stack ss = new Stack();
ss.Push(0);
ss.Push(1);
TextBox1.Text = ss.Pop().ToString(); // 值为14. ListDictionary适合用来存储少量数据, 一般小于10项.
例如:
String s="abcdefg";
ListDictionary ls = new ListDictionary();
ls.Add("wei", s);
TextBox1.Text = ls["wei"].ToString();5.StringColletion 和 StringDictionary 只能存储字符串
6.此外还有 NamevalueCollection sortedList等
用法都差不多,根据提示都基本可以猜出来怎么用,这就不多说了.
注意:
ListDIctionary和StringColletion,StringDictionary,NamevalueCollection
在命名空System.Collections.Specialized中,其他的在System.Collections
补充:Web开发 , ASP.Net ,