标签:
//创建list泛型集合 List<int> ilist = new List<int>(); ilist.Add(1); ilist.Add(9); ilist.AddRange(new int[] { 234, 23, 12, 2, 34, 234 }); ilist.Insert(2, 1231231); for (int i = 0; i < ilist.Count; i++) { Console.WriteLine(ilist[i]); } //泛型list集合可以转为数组 // int[] il=ilist.ToArray(); //数组也可以转为泛型集合 // List<int> nlist = (new int[] { 33, 234, 12, 23, 423, 4 }).ToList(); List<string> slist = new List<string>(); slist.Add("asdf"); slist.Add("阿德的人"); slist.AddRange(new string[] { "第一", "第二", "第三" }); slist.Insert(1, "你猜"); for (int i = 0; i < slist.Count; i++) { Console.WriteLine(slist[i]); } Console.ReadKey();
标签:
原文地址:http://www.cnblogs.com/zywf/p/4509151.html