2

标题说明了一切,但这里有一些它可能看起来的示例代码

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

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

4

1 回答 1

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);

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

于 2013-06-03T23:51:39.383 回答