在运行时指定通用集合类型参数
我有:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为此使用反射:
You could use reflection for this: