/// <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>()的工具提示中,我们可以看到有关此泛型方法的一些内容,它适用于字符串类型.)
解决方法:
这个标签应该这样做< typeparamref name =“T”/>
Recommended Tags for Documentation Comments (C# Programming Guide)