/// <summary>
/// Something about this generic method which works with ??? type.
/// </summary>
/// <typeparam name="T">∙∙∙</typeparam>
/// <returns></returns>
public T Foo<T>()
{
∙∙∙
}
要約タグにコメントを書き込んで、現在の特定のジェネリック型を表示することは可能ですか? (ビジュアルスタジオのように)?
(例:Something about this generic method which works with string type.
のツールチップで確認できますFoo<string>()
)