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

C# 一些代码片段

时间:2015-04-14 00:18:48      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

1、获取集合里泛型类型的实例对象

List<T> list;

Type[] types = list.GetType().GetGenericArguments();

foreach(var type in types)
{
    System.Activator.CreateInstance(type);
}

虽然是个数组,但是此处好像只有一个值,所以
object obj =System.Activator.CreateInstance(types.First());

  

//然后可以获取类的属性做一些操作
var properties = TypeDescriptor.GetProperties(obj);
for (var i = 0; i < properties.Count; i++)
{
    var property = properties[i];
                    
    //如果字段有 [Display(Name = "手机")] 或 [DisplayName("姓名")] 特性,则优先显示DisplayName,如果都为空则显示字段名
    var displayAttribute = property.Attributes[typeof(DisplayAttribute)] as DisplayAttribute;
    string columnName = property.DisplayName == property.Name
                        ? (displayAttribute == null ? property.Name : displayAttribute.Name)
                        : property.DisplayName;
}

 

  

C# 一些代码片段

标签:

原文地址:http://www.cnblogs.com/mango03/p/4423549.html

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