7 lines
103 B
Text
7 lines
103 B
Text
|
|
// the following are equivalent
|
||
|
|
if lObject = nil then
|
||
|
|
...
|
||
|
|
|
||
|
|
if not Assigned(lObject) then
|
||
|
|
...
|