In the past, in .NET code I believe it was necessary to specify <inheritdoc/>
in order to get the description from the <summary>
comment of an inherited member (for example).
Now, in Visual Studio at least, there appears to be no difference whether or not <inheritdoc/>
is used. We always see the inherited description. This is discussed here.
Since there is no apparent benefit in Visual Studio, my inclination is that <inheritdoc/>
should be removed, or at least not required to be specified.
However, is there some benefit to using it anyway? For example, is there something I'm missing in Visual Studio? Or are there current documentation tools that use it?