将C#代码中的方法XML注释从类(派生类型)复制到接口(基本类型)

时间:2018-08-23 19:49:06

标签: c# refactoring comments resharper

考虑Can Resharper Copy XML Comments from Base Class相反-

也就是说,给予(很多成员)

public IFoo {
   public Bar { get; }
}

public Foo : IFoo {
   /* Comment in Derived Type */
   public Bar { return new Bar(); }
}

所需的结果是

public IFoo {
   /* Comment from Derived Type */
   public Bar { get; }
}

public Foo : IFoo {
   /* (possibly removed or replaced with <inheritdoc/>) */
   public Bar { return new Bar(); }
}

当前的开发环境是Visual Studio 2017和ReSharper 2018.1.。

如果不先删除基本类型成员,我将无法使用“拉成员”来更新文档。

0 个答案:

没有答案