RosettaCodeData/Task/Null-object/Delphi/null-object.delphi
2023-07-01 13:44:08 -04:00

6 lines
103 B
Text

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