标签: c# types
答案 0 :(得分:0)
Type.GetType(string)支持此功能。例如,如果我运行以下内容:
Type.GetType(string)
var type = Type.GetType("System.Collections.Generic.List`1[System.String]");
我得到一个表示字符串列表的构造类型。