Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 665 Bytes

RCS1226.md

File metadata and controls

45 lines (35 loc) · 665 Bytes

RCS1226: Add paragraph to documentation comment

Property Value
Id RCS1226
Category Usage
Severity Info

Example

Code with Diagnostic

/// <summary>
/// summary1 // RCS1226
/// 
/// summary2 // RCS1226
/// summary3
/// </summary>
class Foo
{
}

Code with Fix

/// <summary>
/// <para>summary1</para>
/// <para>
/// summary2
/// summary3
/// </para>
/// </summary>
class Foo
{
}

See Also

(Generated with DotMarkdown)