本帖最后由 §風過無痕§ 于 2013-8-18 14:41 编辑
- static void Main(string[] args)
- {
- int[] arr = new int[] { 09, 21, 54, 33, 09, 67, 21, 72, 115, 21 };
- ArrayList list = new ArrayList(arr);//这也是一种声明 初始化方式
- foreach (int m in list)//遍历输出
- {
- Console.Write(m+" ");
- }
- Console.ReadKey();
- }
复制代码 就这么简单 ArrayList 对象名= new ArrayList(要添加到集合的数组名);
别忘咯 using System.Collections;噢!
|