Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 665 Bytes

RCS1070.md

File metadata and controls

42 lines (32 loc) · 665 Bytes

RCS1070: Remove redundant default switch section

Property Value
Id RCS1070
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

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

Code with Fix

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

See Also

(Generated with DotMarkdown)