SyntaxFix
Write A Post
Hire A Developer
Questions
You can do more than just fall through in C#, but you must utilize the "dreaded" goto statement. For example:
switch (whatever) { case 2: Result.Write( "Subscribe" ); break; case 1: Result.Write( "Un" ); goto case 2; }