Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 631 Bytes

RCS1099.md

File metadata and controls

40 lines (30 loc) · 631 Bytes

RCS1099: Default label should be the last label in a switch section

Property Value
Id RCS1099
Category Readability
Severity Info

Example

Code with Diagnostic

switch (s)
{
    default: // RCS1099
    case "a":
    case "b":
        break;
}

Code with Fix

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

See Also

(Generated with DotMarkdown)