Code authors can use <inheritdoc/> to "inherit XML comments from base classes, interfaces, and similar methods" (source).
The most common use case is when overriding a base class method, but the documentation implies that you can "add your XML comments to your synchronous methods and let InheritDoc copy the comments to your asynchronous versions of the same methods."
It would be nice if XmlDocMarkdown supported:
- Inheriting documentation for overridden methods.
- Copying sync method documentation to async methods.
Code authors can use
<inheritdoc/>to "inherit XML comments from base classes, interfaces, and similar methods" (source).The most common use case is when overriding a base class method, but the documentation implies that you can "add your XML comments to your synchronous methods and let InheritDoc copy the comments to your asynchronous versions of the same methods."
It would be nice if XmlDocMarkdown supported: