Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 480 Bytes

RCS1002.md

File metadata and controls

32 lines (22 loc) · 480 Bytes

RCS1002: Remove braces

Property Value
Id RCS1002
Category Style
Severity None

Example

Code with Diagnostic

if (condition)
{ // RCS1002
    Foo();
}

Code with Fix

if (condition)
    Foo();

See Also

(Generated with DotMarkdown)