Is anyone aware if it's possible to claim multiple case statements in aswitch in c#? i'd like to do something like:
switch(strX){case "one", "two":blah;break;default:break;}
try this.switch(strX){case "one":case "two": blah; break;default:break;}