想要在Assembly.LoadFrom()</t>的List <t>中创建要使用的自定义类型

时间:2013-06-03 23:47:47

标签: c# .net list reflection

标题说明了一切,但这里有一些示例代码

Assembly a = Assembly.LoadFrom(trustMeThePathIsRight);
Type test = a.GetType("Full.Path.Of.Desired.Type");
List<test> blah = new List<test>;

但它说无法找到类型或命名空间。基本上,我如何使用从创建程序集引用中获得的类型?

1 个答案:

答案 0 :(得分:5)

简而言之,你不能那样使用它。在编译时指定的类型参数必须在编译时知道。唯一的选择是使用反射:

Assembly a = Assembly.LoadFrom(trustMeThePathIsRight);
Type test = a.GetType("Full.Path.Of.Desired.Type");
Type listType = typeof(List<>).CreateGenericType(test);
IList blah = (IList)Activator.CreateInstance(listType);

当然这里的问题是类型仍然未知,所以你不会得到编译时类型检查。