9
在C#中同步接口和实现注释的方法
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 2年前关闭。 改善这个问题 是否有自动的方法在界面及其实现之间同步注释?我目前正在记录它们,并且不想手动保持它们同步。 更新: 考虑以下代码: 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 …