是否有自动方法在接口及其实现之间同步注释?我目前正在记录它们,并且不想手动使它们保持同步。
更新:
考虑这段代码:
interface IFoo{
/// <summary>
/// Commenting DoThis method
/// </summary>
void DoThis();
}
class Foo : IFoo {
public void DoThis();
}
当我这样创建类时:
IFoo foo=new Foo();
foo.DoThis();//comments are shown in intellisense
这里没有显示评论:
Foo foo=new Foo();
foo.DoThis();//comments are not shown in intellisense
该<inheritDoc/>
标签将完美地在 Sand Castle 中生成文档,但在智能感知工具提示中不起作用。
请分享你的想法。
谢谢。