/// <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>()
)