Voluntary fall through in C# switch statements
Filed in C# on Aug.28, 2009
I used to use voluntary fall through a lot in switch statements in C and C++. In C# it is no longer as easy to do as before, since all cases of a C# switch are required to end with either break or goto. You can still do voluntary fall through. You just need to [...]
