Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 422 Bytes

RCS1004.md

File metadata and controls

33 lines (25 loc) · 422 Bytes

RCS1004: Remove braces from if-else

Property Value
Id RCS1004
Severity None

Example

Code with Diagnostic

if (condition) // RCS1004
{
    WhenTrue();
}
else
{
    WhenFalse();
}

Code with Fix

if (condition)
    WhenTrue();
else
    WhenFalse();

(Generated with DotMarkdown)