Memory corruption rant.

Kagamin spam at here.lot
Wed May 18 00:30:38 PDT 2011


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);


More information about the Digitalmars-d-learn mailing list