假设我只有一个泛型的类名作为“MyCustomGenericCollection(MyCustomObjectClass)”形式的字符串,并且不知道它来自哪个程序集,那么创建该对象实例的最简单方法是什么?
如果有帮助,我知道该类实现了IMyCustomInterface,并且来自加载到当前AppDomain的程序集。
Markus Olsson给出了一个很好的例子here,但我不知道如何将它应用于泛型。
答案 0 :(得分:8)
解析后,使用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);
答案 1 :(得分:2)
MSDN文章How to: Examine and Instantiate Generic Types with Reflection介绍了如何使用Reflection创建泛型Type的实例。将其与Marksus的样本结合使用应该可以帮助您入门。
答案 2 :(得分:1)
如果您不介意转换为VB.NET,那么这样的事情应该可行
foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
{
// find the type of the item
Type itemType = assembly.GetType("MyCustomObjectClass", false);
// if we didnt find it, go to the next assembly
if (itemType == null)
{
continue;
}
// Now create a generic type for the collection
Type colType = assembly.GetType("MyCusomgGenericCollection").MakeGenericType(itemType);;
IMyCustomInterface result = (IMyCustomInterface)Activator.CreateInstance(colType);
break;
}