Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 477 Bytes

RCS1007.md

File metadata and controls

32 lines (22 loc) · 477 Bytes

RCS1007: Add braces

Property Value
Id RCS1007
Category Style
Severity None

Example

Code with Diagnostic

if (condition)
    Foo(); // RCS1007

Code with Fix

if (condition)
{
    Foo();
}

See Also

(Generated with DotMarkdown)