基于类Type创建泛型

时间:2009-02-07 07:10:04

标签: c# generics

如果我有通用类:

public class GenericTest<T> : IGenericTest {...}

我有一个Type的实例,我通过反射得到了,我怎么能用该Type实例化GenericType?例如:

public IGenericTest CreateGenericTestFromType(Type tClass)
{
   return (IGenericTest)(new GenericTest<tClass>());
}

当然,上面的方法不会编译,但它说明了我正在尝试做的事情。

1 个答案:

答案 0 :(得分:8)

您需要使用Type.MakeGenericType

public IGenericTest CreateGenericTestFromType(Type tClass)
{
   Type type = typeof(GenericTest<>).MakeGenericType(new Type[] { tClass });
   return (IGenericTest) Activator.CreateInstance(type);
}