RosettaCodeData/Task/Null-object/Delphi/null-object.delphi

7 lines
103 B
Plaintext

// the following are equivalent
if lObject = nil then
...
if not Assigned(lObject) then
...