如何在C#XML摘要中显示泛型类型

时间:2013-03-29 16:43:06

标签: c# generics summary

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

是否可以在摘要标记中编写注释以显示当前给定的泛型类型。 (正如visual-studio所做的那样)?

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

2 个答案:

答案 0 :(得分:1)

此标记应执行此操作<typeparamref name="T"/>

Recommended Tags for Documentation Comments (C# Programming Guide)

答案 1 :(得分:0)

我认为你应该使用 GhostDoc GhostDoc Link。使用快捷键Ctrl + Shift + d 方法。它生成文档。