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

7 lines
103 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// the following are equivalent
if lObject = nil then
...
if not Assigned(lObject) then
...