码迷,mamicode.com
首页 > Windows程序 > 详细

C#集合

时间:2015-04-19 21:17:49      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

1.集合的类型要实现IEnumerator,IEnumerable接口的才能使用foreach。集合的类型包括array arraylist list hasTabale dictionary sortList stack queue

2.Array

a.一般数组 int[] a=new int[4];int []a=new int[4]{1,2,3,4};int[]a={1,2,3,4};

b.多维数组 int[,] a=new int[2,3]; int[,] a={{1,2},{2,3}}

c.数组的数组int[][]a=new int[2][]; int a[][]={new int[]{1,2,3},new int[]{1,2,3,4}};

2.ArrayList和List

ArrayList可以存储任何的类型List只能存储指定的类型

3.Hashtable,Dictionary

Hashtable可以存储任何类型的键值对,Dictionary只能存储指定类型的键值对

4.SortedList

按照key排序的List

5.Stack Queue

栈结合,队列。有各自方法。

 

C#集合

标签:

原文地址:http://www.cnblogs.com/kkloveit/p/4439756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!