Thema: Delphi try..finally

Einzelnen Beitrag anzeigen

Benutzerbild von sECuRE
sECuRE

Registriert seit: 10. Apr 2003
Ort: Heidelberg
360 Beiträge
 
Delphi 7 Professional
 
#14

Re: try..finally

  Alt 10. Mär 2005, 21:13
Hi,

@FAlter/Binärbaum: Alternativ geht's auch so:
Delphi-Quellcode:
if (a) then
  if (b) then
    anw1
  else anw2;

// im gegensatz zu:
if (a) then
  if (b) then
    anw1
  else
else anw2;
cu
  Mit Zitat antworten Zitat