Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 639 Bytes

RCS1069.md

File metadata and controls

41 lines (31 loc) · 639 Bytes

RCS1069: Remove unnecessary case label

Property Value
Id RCS1069
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

switch (s)
{
    case "a":
        return true;
    case "b": // RCS1069
    default:
        return false;
}

Code with Fix

switch (s)
{
    case "a":
        return true;
    default:
        return false;
}

See Also

(Generated with DotMarkdown)