假设我只有一个泛型的类名作为"MyCustomGenericCollection(MyCustomObjectClass)"形式的字符串,并且不知道它来自哪个汇编,那么创建该对象实例的最简单方法是什么?
如果它有帮助,我知道该类实现了IMyCustomInterface并且来自加载到当前AppDomain的程序集.
Markus Olsson 在这里给出了一个很好的例子,但我不知道如何将它应用于泛型.
解析之后,使用Type.GetType(string)获取对所涉及类型的引用,然后使用Type.MakeGenericType(Type [])来构造所需的特定泛型类型.然后,使用Type.GetConstructor(Type [])获取对特定泛型类型的构造函数的引用,最后调用ConstructorInfo.Invoke以获取该对象的实例.
Type t1 = Type.GetType("MyCustomGenericCollection"); Type t2 = Type.GetType("MyCustomObjectClass"); Type t3 = t1.MakeGenericType(new Type[] { t2 }); ConstructorInfo ci = t3.GetConstructor(Type.EmptyTypes); object obj = ci.Invoke(null);