基本上,何时真正需要(如果有的话)使用完全限定的 xml,请参阅参考:
<see cref="T:MyNamespace.Sub.MyType"/> //Option 1
<see cref="T:MyType"> //Option 2
此外,如何引用 .NET Framework 对象?
<see cref="T:System.Collections.Generic.ICollection{T}"/> //Option 1
<see cref="T:ICollection{T}"/> //Option 2
我了解完全合格的项目将始终允许 Microsoft 的 Sandcastle 正确链接事物,但是是否有必要使所有内容都完全合格?
旁注:Microsoft Sandcastle 是否能够链接到 .NET Framework 帮助文件,或者我是否通过引用来浪费时间<see cref="T:System.Collections.Generic.ICollection{T}"/>
?