时间:2010-07-26 07:37:23

标签: c# types

1 个答案:

答案 0 :(得分:0)

Type.GetType(string)支持此功能。例如,如果我运行以下内容:

var type = Type.GetType("System.Collections.Generic.List`1[System.String]");

我得到一个表示字符串列表的构造类型。