我刚开始使用 GhostDoc,所以我希望我的问题不是愚蠢的。我想通过引用它的方法 Method1 来记录 Class1。所以,我在 Class1 的描述中使用 cref 如下。
/// <summary>
/// Use this class to do a lot of things.
/// </summary>
/// <remarks>
/// The most interesting method is <see cref="Method1"/>
/// </remarks>
public class Class1
{
public void Method1(int a)
{ }
}
在使用 GhostDoc Pro 构建帮助文件后,我注意到 cref 没有“绑定”,也就是说,在 Remarks 下的文档中它说:“最有趣的方法是 [Method1]”(没有指向 Method1 的链接)。如何使链接出现?