標籤:image 有序 技術分享 c# href img 列表 集合類 集合
數組(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名稱空間中。
集合和列表實現的介面如下:
【轉】C#之集合