I've seen the:

Unhandled Exception: System.NullReferenceException: Object reference not set
to an instance of an object

once or twice. Ok, a few times. Ok, a few...never mind.

It means you tried to use something that wasn't an object yet.

Are you doing the:

if ( grizeldaFish != null )

thing? Or the:

try {
   grizeldaFish.HeyThatFirstCharIsn'tCapitalized();
}
catch ( Exception ex ) {
   Console.Writeline("well, THAT didn't work very well...");
   // display juicy stuff from ex here
}

thing?

And the debugger sometimes doesn't successfully connect to the 
running app, so it never catches on to the fact that the app crashed.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to