I am writing some code in VB.NET that uses a switch statement but in one of the cases it needs to jump to another block. In C# it would look like this:
Why don't you just refactor the default case as a method and call it from both places?
This should be more readable and will allow you to change the code later in a more efficient manner.