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

c#反射

时间:2016-10-27 12:57:12      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:ict   addm   method   creat   instance   cti   gen   tor   count   

int count = Convert.ToInt32(objType.GetProperty("Count").GetValue(value, null));

var ss= objType.GenericTypeArguments[0];
var listType = typeof(List<>).MakeGenericType(ss);
var list = Activator.CreateInstance(listType);
var addMethod = listType.GetMethod("Add");

 

object oItem = objType.GetProperty("Item").GetValue(value, new object[] { i });
object obj = Copy(oItem);
addMethod.Invoke((object)list, new object[] { obj });

c#反射

标签:ict   addm   method   creat   instance   cti   gen   tor   count   

原文地址:http://www.cnblogs.com/caiyanlin/p/6003167.html

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