我有:
class Car {..}
class Other{
List<T> GetAll(){..}
}
我想这样做:
Type t = typeof(Car);
List<t> Cars = GetAll<t>();
我该怎么做?
我想从我在运行时使用反射发现的类型的数据库中返回一个泛型集合。
答案 0 :(得分:26)
Type generic = typeof(List<>);
Type specific = generic.MakeGenericType(typeof(int));
ConstructorInfo ci = specific.GetConstructor(Type.EmptyTypes);
object o = ci.Invoke(new object[] { });
答案 1 :(得分:8)
您可以使用反射:
Type t = typeof(Car);
System.Type genericType= generic.MakeGenericType(new System.Type[] { t});
Activator.CreateInstance(genericType, args);