I\'m using a switch/case statement to handle some updates for a deployed application. Basically, I want to waterfall through the cases to perform the update from the current run
put a break; after UpdateToV2();
break;
UpdateToV2();
Couldnt you get rid of the goto case "1" as it will fall through to that anyway?
goto case "1"