如何获得与 XML 文档输出文件中使用的名称相对应的类型名称?
我认为 XML 文档使用全名,但事实并非如此。例如全称Collection<long>
是:
System.Collections.Generic.ICollection`1[[System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]])
而对应于类型属性的 XML 文档Collection<long>
是:
System.Collections.Generic.ICollection{System.Int64}