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

C#list泛型集合

时间:2015-05-17 10:38:27      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

           //创建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();

 

C#list泛型集合

标签:

原文地址:http://www.cnblogs.com/zywf/p/4509151.html

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