I'm just starting out teaching myself C#, and in a tutorial on Switch statements, I read:
The behavior where the flow of execution is forbidden from flowing from one case block to the next is one area in which C# differs from C++. In C++ the processing of case statements is allowed to run from one to another.
Why does it stop after one case statement in C#? If you can use the break statement to stop at any point, is there any reason in C# vs. C++ to having it stop after a match is found? And if you wanted more than one case in C#, would you have to use another Switch statement?