5
にリンクを作成しません:私は、Visual C#Expressのオブジェクトブラウザでこのライブラリを開くとCREFは、私は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()
{
}
、XMLコメントは、この方法で示されています:
exception cref
完全な名前空間を追加して、有効なリンクを生成するが、see cref
はプレーンテキストとして表示されます。このリンクを動作させるにはどうすればよいですか?
メソッドcrefを完全修飾するようにしてください。それは動作しますか? –
@ThomasWeller:いいえ、結果は変わりません。 –
IntelliSenseを使って(引用符の間にcrefの内容を削除し、Alt + Enterを押して再挿入します)? –