Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 500 Bytes

RCS1027.md

File metadata and controls

31 lines (21 loc) · 500 Bytes

RCS1027: Add new line before embedded statement

Property Value
Id RCS1027
Category Formatting
Severity None

Example

Code with Diagnostic

if (x) Foo(); // RCS1027

Code with Fix

if (x)
{
    Foo();
}

See Also

(Generated with DotMarkdown)