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

7 lines
103 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
// the following are equivalent
if lObject = nil then
...
if not Assigned(lObject) then
...