If the class implements the method defined in the interface, you can choose whether you duplicate the documentation or refer to it using <see cref="..." /> .
public interface IPerformer { /// <summary> /// Do something useful. /// </summary> /// <param name="something">Object to do something with</param> void Do(Something something); } public class Implementation : IPerformer { /// <copy from="IPerformer" />
Is it possible for the Sandcastle API documentation tool to automatically copy the documentation (which would make reading the API documentation more convenient)? Something like @inheritDoc from Java Doc?
deamon
source share