Skip to main content

RCS0009: Add blank line between declaration and documentation comment

Properties

PropertyValue
Default Severitydisabled by default
Minimum language version-

Examples

Example #1

diagnostic.cs
object P1 { get; }
/// <summary>
/// ...
/// </summary>
object P2 { get; }
fix.cs
object P1 { get; }

/// <summary>
/// ...
/// </summary>
object P2 { get; }

Applies to