Send comments on this topic. |
|
Cause
Rule Description
Visual Studio provides helper functionality for adding new elements such as classes to a project. Visual Studio will create a default documentation header for the new class and fill in this header with default documentation text.
A violation of this rule occurs when the <summary> tag for a code element still contains the default documentation text generated by Visual Studio.
How to Fix Violations
To fix a violation of this rule, replace the default documentation text with new text describing the contents of the code element.
/// <summary>
/// Summary description for the Example class.
/// </summary>
public class Example
{
}
© Microsoft Corporation. All Rights Reserved.