Bei mir so:
Code:
switch (variable)
{
case FIRST_CASE:
...
break;
case SECOND_CASE:
...
case THIRD_CASE:
break;
}
oder
Delphi-Quellcode:
case variable of
FIRST_CASE:
begin
...
end;
SECOND_CASE:
...
end;
In Delphi scheint mir allerdings SirThornberrys Stil noch übersichtlicher zu sein...
Bzgl. Tastenkombination: da empfehle ich CnPack, da gibt es irgendwo eine Einstellung, die es möglich macht, mit Tab und Shift+Tab ein- und auszurücken.