是否有自动的方法在界面及其实现之间同步注释?我目前正在记录它们,并且不想手动保持它们同步。
更新:
考虑以下代码:
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中生成文档,但是在智能感知工具提示中不起作用。
请分享您的想法。
谢谢。
<inheritdoc/>
,在Visual Studio中已被打破。请通过visualstudio.uservoice.com/forums/121579-visual-studio/…