C# 反射如何取自定义类型的List<>列表的 Type 类型
代码如下:
Assembly asmPlugIn = Assembly.LoadFrom(strPlugInPath);
string strtype = "userInfo";
//这里可以取到自定义类型(自己声明的类userInfo)的Type
Type itemType = asmPlugIn.GetType(strType);
//用这种方法取到的值为 null (这里要取的是list<userInfo> 列表)
Type valueType = asmPlugIn.GetType(string.Format("System.Collections.Generic.List`1[[{0},{1}]]"
, itemType.Name, asmPlugIn.FullName));
//用这种方法取到的值也为 null
Type valueType2 = Type.GetType(string.Format("System.Collections.Generic.List`1[[{0},{1}]]"
, itemType.Name, asmPlugIn.FullName));
都知道是 List<UserInfo> 了,还反射什么呢?项目可行性研究报告
typeof(List<UserInfo>) 不行吗?
Type valueType2 = Type.GetType(string.Format("System.Collections.Generic.List`1[[{0},{1}]]", itemType.Name, asmPlugIn.FullName));
没有加命名空间吧。
itemType.Name 改为 itemType.FullName
public static object CreateGeneric(Type generic, Type innerType, params object[] args) { Type specificType = generic.MakeGenericType(new System.Type[] { innerType }); return Activator.CreateInstance(specificType, args); } object genericList = CreateGeneric(typeof(List<>), typeof(EC));
public static object CreateGeneric(Type generic, Type innerType, params object[] args) { Type specificType = generic.MakeGenericType(new System.Type[] { innerType }); return Activator.CreateInstance(specificType, args); } object genericList = CgenericList.GetType().InvokeMember("Add", BindingFlags.Default | BindingFlags.InvokeMethod, null, genericList, new object[] { o1,o2,o3 });
这样就添加进去啦 eateGeneric(typeof(List<>), typeof(EC));