惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
IT之家
IT之家
量子位
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
罗磊的独立博客
S
SegmentFault 最新的问题
博客园_首页
N
Netflix TechBlog - Medium
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
A
About on SuperTechFans
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
MyScale Blog
MyScale Blog

博客园 - Zhongjian Zhang

.net framework profiles /.net framework 配置 人生的意义岂止是谋生-新视野大学英语第二册第八单元A课文 - Zhongjian Zhang - 博客园 格式化类型和分析字符串 类接口/Class Interface LG 3D投影 directory searchPattern to regex pattern Textbox/ComboBox 自动完成AutoCompletion Bloom's Taxonomy/布鲁姆分类 Custom Shapes/Combin Shapes/合并图形 in PowerPoint 2010 scale up vs scale out/Scale vertically vs. horizontally Window Types(Tool windows/document windows)/窗口类型(工具窗口/文档窗口) in VS VS2010中shortcut key快捷键一览下载 随机long(Random long/NextLong) Windows Azure Storage Explorer List System Error Codes/系统错误代码 图解500强 超级计算机 In graphics: Supercomputing superpowers FTP active mode and assive mode(ftp 主动模式/被动模式) Ftp commands and options 为VM制作可引导的操作系统ISO
Data Structure/数据结构 in .Net
Zhongjian Zhang · 2010-08-25 · via 博客园 - Zhongjian Zhang
  .Net1.0 .Net2.0 .Net3.* .Net4.0
Array

ArrayList,

single array

multi-d array

Non-zero-based array

T[],T[][],T[,]
fixed length array
   
Collection

StringCollection

DataRow

BitVector32

LinkedList<T>

  ConcurrentBag<T>
List
(accessed by index)

SortedList

BitArray

ArrayList

BitVector32

List<T>

   
Dictionary
(key,value pair)

Hashtable

StringDictionary

ListDictionary

HybridDictionary

NameValueCollection

OrderedDictionary

SortedDictionary

DictionaryEntry

SortedList

Dictionary<Key,Value>

SortedDictionary<T>

NameValuePair<Key,Value>

SortedList<Key,Value>

 

ConcurrentDictionary<Key, Value>

Other

Stack

Queue

Stack<T>

Queue<T>

HashSet

SortedSet

Tuple<T,..>

ConcurrentStack<T>

ConcurrentQueue<T>