cref不会在对象浏览器中创建链接

Ale*_*x F 5 c# xml visual-studio-2010

我在C#2010类库中有以下代码:

/// <summary>
/// Execute all enable tests synchronously.
/// Function may throw exception if executed in invalid state (for example, all tests are disabled).
/// If function doesn't throw exception, this doesn't mean, that all tests succeeded. After function 
/// finished, it is necessary to check the state of all tests.
/// Function is synchronous and may take a long time to execute.
/// Use <see cref="SiX_Dg_RequestStop"/> function to stop this function from another thread.
/// </summary>
/// <exception cref="AtpException"></exception>
public static void SiX_Dg_Execute()
{
}

public static void SiX_Dg_RequestStop()
{
}
Run Code Online (Sandbox Code Playgroud)

当我在Visual C#Express对象浏览器中打开此库时,XML注释以这种方式显示:

对象Broser

exception cref生成有效链接,但see cref显示为纯文本,添加了完整名称空间.如何使此链接正常工作?

Jos*_* M. 1

我认为 Visual Studio 的对象资源管理器没有实现这种链接。查看msdn方法“System._AppDomain.ExecuteAssembly”的在线文档, 了解您需要的示例,然后查看对象浏览器。第一个有链接,但第二个没有链接。