如何在c# XML摘要中显示泛型类型
本文关键字:显示 泛型类型 XML | 更新日期: 2023-09-27 18:06:35
/// <summary>
/// Something about this generic method which works with ??? type.
/// </summary>
/// <typeparam name="T">∙∙∙</typeparam>
/// <returns></returns>
public T Foo<T>()
{
∙∙∙
}
是否可以在摘要标记中写注释来显示当前给定的泛型类型?(就像visual studio那样)?
(。我们可以在Foo<string>()
的工具提示中看到Something about this generic method which works with string type.
这个标签应该这样做<typeparamref name="T"/>
文档注释推荐标签(c#编程指南)
我认为你应该使用GhostDoc。GhostDoc链接。使用快捷键Ctrl + Shift + d上的方法。这是生成文档