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

c#List泛型数据扩展,把List<>型数据格式化成List<SelectListItem>,用来作dropdownlist的数据

时间:2017-07-17 13:15:39      阅读:594      评论:0      收藏:0      [点我收藏+]

标签:ack   har   blog   content   数据格式   格式化   null   tty   static   

代码例如以下

        public static List<SelectListItem> CreateSelect<T>(this IList<T> t, string text, string value)
        {
            List<SelectListItem> l = new List<SelectListItem>();
            foreach (var item in t)
            {
                var propers = item.GetType().GetProperty(text);
                var valpropers = item.GetType().GetProperty(value);
                l.Add( new SelectListItem{Text=propers.GetValue(item,null).ToString(), Value=valpropers.GetValue(item,null).ToString()} );
            }
            return l;
        }


 

c#List泛型数据扩展,把List&lt;&gt;型数据格式化成List&lt;SelectListItem&gt;,用来作dropdownlist的数据

标签:ack   har   blog   content   数据格式   格式化   null   tty   static   

原文地址:http://www.cnblogs.com/zhchoutai/p/7193675.html

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