Kagamin Wrote:

> Jesse Phillips Wrote:
> 
> > writeln("I"m still ok")
> > writeln(myObject is null); // Crash with access violation
> 
> try
> writeln("I'm still ok");
> writeln(0);
> writeln(false);

or
writeln("I'm still ok");
writeln("2");
if(myObject is null)
  writeln("3");
else
  writeln("4");
writeln(0);
writeln(false);

Reply via email to