开发者

Initialize generic object from a System.Type

开发者 https://www.devze.com 2022-12-30 11:19 出处:网络
I need to create a generic type, but I do not know the type at compile time. I would like to do this:

I need to create a generic type, but I do not know the type at compile time. I would like to do this:

Type t = typeof(whatever);
var list = new List<t>

this won't compile, because t is not a valid typ开发者_StackOverflow社区e. But it does know all about a valid type. Is there a way to dynamically create the generic list from a System.Type like this? I may need reflection, and that's ok, I am just a bit lost here.


Like this:

Type t;
Type genericListType = typeof(List<>).MakeGenericType(t);
object list = Activator.CreateInstance(genericListType);

Note that you can only assign it to a variable of type object. (Although you can cast to to the non-generic IList interface)

To use the list variable, you'll probably need reflection.

0

精彩评论

暂无评论...
验证码 换一张
取 消