Ich habe noch zwei Fragen bezüglich der Borland Styleguide.
Es sind Peanuts, aber man will ja alles richtig machen
1. Vergleichs- und Zuweisungsoperanden
Delphi-Quellcode:
if x=0 then //Steht in meiner Delphi-Bibel
if x = 0 then //Styleguide
x:= 0 //Bibel
x := 0 //Guide
2. "if-then" Zeilenumbruch
Delphi-Quellcode:
if x=0 then DoSomething; //Finde ich eigentlich übersichtlicher
if x=0 then
DoSomething; //Gemäss Styleguide
Welche Möglichkeiten sind zu bevorzugen?
Gruss Fellmer