VSDiagnostics icon indicating copy to clipboard operation
VSDiagnostics copied to clipboard

Implement RedundantXMLDocParameter

Open Vannevelj opened this issue 9 years ago • 0 comments

This resembles #188 but works the other way around: show a warning and offer to remove an XML doc parameter comment if there is no corresponding parameter.

This:

/// <param name="a"> First param </param>
/// <param name="b"> Non-existing param </param>
public void MyMethod(int a) { }

becomes

/// <param name="a"> First param </param>
public void MyMethod(int a) { }

Vannevelj avatar Sep 23 '15 21:09 Vannevelj