Hat C # Ihnen immer erlaubt, geschweifte Klammern in einer switch()
Anweisung zwischen den case:
Anweisungen wegzulassen ?
Was bewirkt das Weglassen, wie es Javascript-Programmierer oft tun?
Beispiel:
switch(x)
{
case OneWay:
{ // <---- Omit this entire line
int y = 123;
FindYou(ref y);
break;
} // <---- Omit this entire line
case TheOther:
{ // <---- Omit this entire line
double y = 456.7; // legal!
GetchaGetcha(ref y);
break;
} // <---- Omit this entire line
}