数组(http://www.cnblogs.com/afei-24/p/6738128.html)的大小是固定的。如果元素的个数是动态的,就应使用集合类。
列表(http://www.cnblogs.com/afei-24/p/6824791.html)
队列(http://www.cnblogs.com/afei-24/p/6829817.html)
栈(http://www.cnblogs.com/afei-24/p/6830071.html)
链表(http://www.cnblogs.com/afei-24/p/6830160.html)
有序列表(http://www.cnblogs.com/afei-24/p/6830376.html)
字典(http://www.cnblogs.com/afei-24/p/6835222.html)
集(http://www.cnblogs.com/afei-24/p/6835365.html)
可观察的集合(http://www.cnblogs.com/afei-24/p/6835420.html)
位数组(http://www.cnblogs.com/afei-24/p/6835720.html)
不变的集合(http://www.cnblogs.com/afei-24/p/6835985.html)
并发集合(http://www.cnblogs.com/afei-24/p/6836976.html)
大多数集合类都在System.Collections和System.Collections.Generic名称空间中。泛型集合类位于System.Collections.Generic名称空间中;专用于特定类型的集合类位于System.Collections.Specialized名称空间中。线程安全的集合类位于 System.Collections.Concurrent名称空间中。不可变的集合类位于System.Collections.Immutable名称空间中。
集合和列表实现的接口如下: