我有一个包含List属性的类:
class Test
{
public List<int> Indices { get; private set; }
}
使用文本模板我想创建自动代码。使用DTE我可以找到CodeClass并遍历所有元素以查找所有CodeProperties。我可以通过打印来编写完整的类型:
WriteLine(codeProperty.Type.AsFullName);
//Prints: System.Collections.Generic.List<System.Int32>
但是现在我想知道:是否可以检索List中的元素类型(在本例中为int或System.Int32)?