我在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()
{
}
当我在Visual C#Express对象浏览器中打开此库时,XML注释以这种方式显示:
exception cref
生成有效链接,但see cref
显示为纯文本,并添加了完整名称空间。如何使此链接正常工作?
答案 0 :(得分:1)
我认为visual studio的对象浏览器没有实现这种链接。查看方法的在线文档&#34; System._AppDomain.ExecuteAssembly&#34; msdn了解您需要的示例,然后查看对象浏览器。在第一个中有一个链接,但在第二个中没有链接。