Inherit XML Documentation Comments in C#
I am a big fan of the XML documentation comments in C#. This documentation is directly in the code and has therefore the biggest chance to be updated when the code changes.
However, when you demand to document all public methods, you end up with a lot of repetitive documentation. As with duplicated code, you will update only the parts you remember, and the others will be outdated in no time. That quickly negates the benefits of having the documentation in the first place.
A simple solution for this problem is to inherit the documentation that should be the same. We can do that with the keyword inheritdoc.
This keyword allows us to document the interface with all the necessary details only once and then inherit this documentation in our implementations:
In the class that implements our interface we only need to document what makes this implementation special while we reuse the documentation for the methods:
Not only do you need to write less documentation, if things change, we only need to update it at one place. In Visual Studio everything looks as if we wrote the documentation on the class itself:

Wherever we used this approach, the developers stopped to bother writing slightly varying comments for the different implementations. Instead, that time was used to think a bit more about the documentation of the interface, what leads to more useful descriptions. Try it!