在C#中,如何从泛型定义和泛型参数(如
)构造泛型类型var genericDefinition = typeof(List);
var genericArgument = typeof(string);
// How can I get the Type instance representing List<string> from the 2 variables above?
在我的用例中,泛型参数是动态解析的。这可能在C#中吗?提前谢谢。
答案 0 :(得分:4)
没有typeof(List)
之类的东西。但是,typeof(List<>)
工作正常,并且是开放的泛型类型。然后你只需使用:
var genericDefinition = typeof(List<>);
var genericArgument = typeof(string);
var concreteListType = genericDefinition.MakeGenericType(new[] {genericArgument});
你应该发现concreteListType
是typeof(List<string>)
。