Send comments on this topic. |
|
Cause
Rule Description
///<summary>
///The summary text.
///</summary>
/// <param name="x">The document root.</param>
/// <param name="y">The Xml header token.</param>
private void Method1(int x, int y)
{
}
The header lines should begin with a single space after the three leading forward slashes:
/// <summary>
/// The summary text.
/// </summary>
/// <param name="x">The document root.</param>
/// <param name="y">The Xml header token.</param>
private void Method1(int x, int y)
{
}
How to Fix Violations
© Microsoft Corporation. All Rights Reserved.