Is C# true to C++, needing a break; per case:? ..Default is fall-thru – Unlike VB
OR will it automatically break out of a case once found? ..Default is break – Like VB
Edit: So it is a combination of both, Default is none – You have to specify either break; or goto;
Every case needs to have either a break; or goto case statement in C#