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

泛型类及方法的基本使用

时间:2014-05-22 03:35:38      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   class   c   code   

1、定义

bubuko.com,布布扣
 public class EntBase<T>:where  T: new()
    {
        public List<T> GetListDemo()
        {
            var lst = new List<T>();
            for (int i = 1; i <= 35; i++)
            {
                var ent = new T();
                foreach (var item in ent.GetType().GetProperties())
                {
                    var v = (DescriptionAttribute[])item.GetCustomAttributes(typeof(DescriptionAttribute), false);
                    var descriptionName = v[0].Description;

                    item.SetValue(ent, descriptionName + ":" + i.ToString(), null);
                }

                lst.Add(ent);
            }
            return lst;
        }

        public string GetJsonDemo<T>()
        {
            var oSerializer = new System.Web.Script.Serialization.JavaScriptSerializer();  //命名空间为:System.Web.Extensions
            string sJSON = oSerializer.Serialize(GetListDemo<T>());
            return sJSON;
        }
    }
bubuko.com,布布扣

 

2、使用

 

   var ent = new EntBase<EquipQryEnt>();
            var lst = ent.GetListDemo();

 

泛型类及方法的基本使用,布布扣,bubuko.com

泛型类及方法的基本使用

标签:des   style   blog   class   c   code   

原文地址:http://www.cnblogs.com/gossip/p/3738461.html

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