5
/// <summary>
/// Something about this generic method which works with ??? type.
/// </summary>
/// <typeparam name="T">∙∙∙&lt;/typeparam>
/// <returns></returns>
public T Foo<T>()
{
    ∙∙∙
}

是否可以在摘要标记中写注释以显示当前给定的泛型类型。(就像视觉工作室一样)?

例如我们可以Something about this generic method which works with string type.在工具提示中看到Foo<string>()

4

2 回答 2

3

这个标签应该这样做<typeparamref name="T"/>

文档注释的推荐标签(C# 编程指南)

于 2013-03-29T20:55:16.103 回答
0

我认为您应该使用GhostDocGhostDoc 链接。使用快捷键 Ctrl + Shift + d on 方法。它生成文档。

于 2013-06-13T14:17:22.527 回答