Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 610 Bytes

RCS1111.md

File metadata and controls

40 lines (30 loc) · 610 Bytes

RCS1111: Add braces to switch section with multiple statements

Property Value
Id RCS1111
Category Style
Severity None

Example

Code with Diagnostic

switch (s)
{
    case "a":
        Foo(); // RCS1111
        break;
}

Code with Fix

switch (s)
{
    case "a":
        {
            Foo();
            break;
        }
}

See Also

(Generated with DotMarkdown)