Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: True = False ....
21. Apr 2011, 16:36
Bitte NIE auf True bei einem if testen, wenn dann so:
Delphi-Quellcode:
if DoSomething() then
...
else
...;
Dann geht man diesem Problem schon mal pauschal komplett aus dem Weg.
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|