在运行时指定通用集合类型参数

发布于 2024-07-13 09:04:12 字数 251 浏览 8 评论 0原文

我有:

class Car {..}
class Other{
  List<T> GetAll(){..}
}

我想做:

Type t = typeof(Car);
List<t> Cars = GetAll<t>();

我该怎么做?

我想从数据库中返回我在运行时使用反射发现的类型的通用集合。

I have:

class Car {..}
class Other{
  List<T> GetAll(){..}
}

I want to do:

Type t = typeof(Car);
List<t> Cars = GetAll<t>();

How can I do this?

I want to return a generic collection from the database of a type that I discover at runtime using reflection.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何其悲哀 2024-07-20 09:04:12
Type generic = typeof(List<>);    
Type specific = generic.MakeGenericType(typeof(int));    
ConstructorInfo ci = specific.GetConstructor(Type.EmptyTypes);    
object o = ci.Invoke(new object[] { });
Type generic = typeof(List<>);    
Type specific = generic.MakeGenericType(typeof(int));    
ConstructorInfo ci = specific.GetConstructor(Type.EmptyTypes);    
object o = ci.Invoke(new object[] { });
年华零落成诗 2024-07-20 09:04:12

您可以为此使用反射:

Type t = typeof(Car);
System.Type genericType= generic.MakeGenericType(new System.Type[] { t});
Activator.CreateInstance(genericType, args);

You could use reflection for this:

Type t = typeof(Car);
System.Type genericType= generic.MakeGenericType(new System.Type[] { t});
Activator.CreateInstance(genericType, args);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文