DotNetAnalyzers / DocumentationAnalyzers

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

DOC901: Convert single-line comment to <summary> #52

Closed drewnoakes closed 5 years ago

drewnoakes commented 5 years ago

Before:

// A description of foo.
private int _foo;

After:

/// <summary>A description of foo.</summary>
private int _foo;
sharwell commented 5 years ago

An obvious win. Assigned DOC901 as a refactoring.