DotNetAnalyzers / DocumentationAnalyzers

Analyzers for XML documentation
MIT License
35 stars 6 forks source link

Sync parameter documentation for overloads. #79

Open JohanLarsson opened 5 years ago

JohanLarsson commented 5 years ago
public class C
{
    /// <param name="fileName">1</param>
    public void M(string fileName) { }

    /// <param name="fileName">2</param>
    public void M(string fileName, bool b) { }
}

Often we want the same text for both, not always though which makes it tricky.

sharwell commented 5 years ago

This could be supported by inheritdoc/autoinheritdoc