Possible Duplicate:
Multiple Cases in Switch:
Is it possible to do a multiple constant-expression switch statement like
switch (i) {
   case "run","notrun", "runfaster": //Something like this.
      DoRun();
      break;
   case "save":
      DoSave();
      break;
   default:
      InvalidCommand(command);
      break;
   }
 
     
    