假设我有以下类结构:
public class Outer<T>
{
public class Inner<U>
}
还有一些代码:
var testType = typeof(Outer<string>.Inner<int>);
如何从变量中获取构造的泛型类型typeof(Outer<string>)或泛型的值?typeof(string)testType
胡子哥哥
相关分类