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

匿名类的反射 属性描述器

时间:2015-10-05 14:14:53      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:

ArrayList arrayList = new ArrayList { new { ID = "119", Name = "csdn" } };
PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(arrayList[0]);
PropertyDescriptor pdID = pdc.Find("ID", true);
PropertyDescriptor pdName = pdc.Find("Name", true);
for (int i = 0; i < 5000 * 100000; i++)
{

var item = arrayList[0];


var id = pdID.GetValue(item);


var name = pdName.GetValue(item);

}

匿名类的反射 属性描述器

标签:

原文地址:http://www.cnblogs.com/kexb/p/4855650.html

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