码迷,mamicode.com
首页 > 其他好文 > 详细

泛型,动态创建List<T> (转摘)

时间:2014-06-08 21:25:32      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:c   class   a   int   get   string   

第一种:

 

       static void Main()
        {
            object intList = MakeList(typeof(int), 1, 2, 3);
            object strList = MakeList(typeof(string), "sdfd", "fet");

            //List<int>
            foreach(object obj in (System.Collections.IEnumerable)intList)
                Console.WriteLine(obj);

            //List<string>
            foreach(object obj in (System.Collections.IEnumerable)strList)
                Console.WriteLine(obj);
        }

        static object MakeList(Type t, params object[] items)
        {
            Type type = typeof(List<>).MakeGenericType(t);

            object list = Activator.CreateInstance(type);
            System.Collections.IList ilist = list as System.Collections.IList;
            foreach (object o in items)
                ilist.Add(o);
            return list;
        }

 

 

第二种:

 

 


    public class Main<T> where T: new()
    {
        public void work()
        {
            T t = new T();
            //string s = t.GetName();
        }
    }
//调用
Main<A> m = new Main<A>();
m.work();

泛型,动态创建List<T> (转摘),布布扣,bubuko.com

泛型,动态创建List<T> (转摘)

标签:c   class   a   int   get   string   

原文地址:http://www.cnblogs.com/coolsundy/p/3775800.html

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