Registriert seit: 9. Jun 2002
Ort: Saarland
7.554 Beiträge
Delphi 8 Professional
|
Re: case
12. Nov 2003, 12:09
Zitat von choose:
Delphi-Quellcode:
case foo of
23: //..
42: if Bar then SomeAction; <--- ; hat mit else nichts zu tun
else AnotherAction <--- "CASE-else"
end; <--- "CASE-end"
ich schreibe das immer so:
Delphi-Quellcode:
case foo of
23: //..
42: if Bar then SomeAction; <--- ; hat mit else nichts zu tun
else
AnotherAction
end;
Gruß
Hansa
|