If you really need it, you can always surround the bloc of code with '{' and '}'.To be precise, the following snippet does the trick:
switch (foo)
{
case bar1:
{ //{
Func1();
break;
} //}
case bar2:
{ //{
Func2();
break;
} //}
}