Property | Value |
---|---|
Id | RCS1099 |
Severity | Info |
switch (s)
{
default: // RCS1099
case "a":
case "b":
break;
}
switch (s)
{
case "b":
case "a":
default:
break;
}
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1099 |
Severity | Info |
switch (s)
{
default: // RCS1099
case "a":
case "b":
break;
}
switch (s)
{
case "b":
case "a":
default:
break;
}
(Generated with DotMarkdown)