2013-12-11 6 views
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コメントは、この方法で示されています:

Object Broser

exception cref完全な名前空間を追加して、有効なリンクを生成するが、see crefはプレーンテキストとして表示されます。このリンクを動作させるにはどうすればよいですか?

+0

メソッドcrefを完全修飾するようにしてください。それは動作しますか? –

+0

@ThomasWeller:いいえ、結果は変わりません。 –

+0

IntelliSenseを使って(引用符の間にcrefの内容を削除し、Alt + Enterを押して再挿入します)? –

答えて

1

私はVisual Studioのオブジェクトエクスプローラは、そのような種類のリンクを実装していないと思います。必要なものの例については、 "System._AppDomain.ExecuteAssembly" msdnメソッドのオンラインドキュメントを参照し、オブジェクトブラウザを参照してください。最初のものにはリンクがありますが、2番目のリンクにはリンクがありません。

関連する問題