Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 552 Bytes

RCS1004.md

File metadata and controls

38 lines (28 loc) · 552 Bytes

RCS1004: Remove braces from if-else

Property Value
Id RCS1004
Category Style
Severity None

Example

Code with Diagnostic

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

Code with Fix

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

See Also

(Generated with DotMarkdown)