是否存在在接口和其实现之间同步注释的自动方法?我目前正在记录它们,不想手动保持它们的同步。
更新:
考虑下面的代码:
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/>
标记将完美地生成 SandCastle 中的文档,但是它不能在智能化工具提示中工作。