参考通用评论
我想知道是否可以在注释中引用动态泛型类名并在IDE中有条件地解决它?
简单的基类示例:
// <summary>
// Retrieves all <T> members from the database.
// </summary>
public void GetAll<T>()
{
//magic
}
如果我现在继承这个类,并且恰好是类用户,那么我想让IntelliSense将我的评论显示为“从数据库中检索所有用户成员”。
这可能吗?
无法让Intellisense自动编写用于特定呼叫的通用类型的名称。 你可以做的最好的是使用typeparamref
标签,它向Visual Studio(更重要的是任何文档生成器)指出你指的是泛型类型参数(在这种情况下是T
)。
// <summary>
// Retrieves all <typeparamref name="T"/> members from the database.
// </summary>
public void GetAll<T>()
{
//magic
}
链接地址: http://www.djcxy.com/p/42659.html
上一篇: Reference generic comment
下一篇: Filtering the files shown in OpenFileDialog based on content?