作者:后起之秀 | 来源:互联网 | 2023-08-14 14:41
I have the following code in C# 2010 Class Library:
我在C#2010类库中有以下代码:
///
/// 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 function to stop this function from another thread.
///
///
public static void SiX_Dg_Execute()
{
}
public static void SiX_Dg_RequestStop()
{
}
When I open this library in Visual C# Express Object Browser, XML comment is shown by this way:
当我在Visual C#Express对象浏览器中打开此库时,XML注释以这种方式显示:
exception cref
produces valid link, but see cref
is shown as plain text, with full namespace added. How can I make this link working?
exception cref生成有效链接,但是看到cref显示为纯文本,并添加了完整的命名空间。如何使此链接正常工作?
1 个解决方案