I have a CodeProperty object in my T4 template of a generic property (ICollection<MyNameSpace.MyType>). How can I get the CodeElement object of MyNameSpace.MyType so I can inspect and do other things with it?

有帮助吗?

解决方案

You may obtain it via CodeModel.CodeTypeFromFullName("MyNameSpace.MyType").

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top