RosettaCodeData/Task/Null-object/Delphi/null-object.delphi
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

6 lines
103 B
Text

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