标签:
System.Collections Class
ArrayList | 表示动态大小的对象集合,其中的对象是按顺序列出的 | IList ICollection IEnumerable ICloneable |
BitArray | 管理位值的简单数组,位值用布尔值表示,true表示该位打开(1),false表示该位关闭(0) | ICollection IEnumerable ICloneable |
Hashtable | 表示键值对的集合,按键的散列值进行组织 | IDictionary ICollection IEnumerable ICloneable |
Queue | 表示标准的先进先出(FIFO)队列 | ICollection ICloneable IEnumerable |
SortedList | 表示键值对的集合,按键排序,可通过键的索引进行访问 | IDictionary ICollection IEnumerable ICloneable |
Stack | 后进先出(LIFO)的栈,提供压入和弹出功能 |
ICollection ICloneable IEnumerable |
标签:
原文地址:http://www.cnblogs.com/hom-ketg/p/4246271.html