Log in

View Full Version : Mission Error


Troll2k
03-15-2012, 01:18 PM
What is

system.null reference exception: object reference not set to an instance of an object.

and how do I fix it?

FG28_Kodiak
03-15-2012, 01:31 PM
this message appears if you try to access a object that not exist.
To avoid it you can check for null value.

If( ... != null) // check for null value. Only executed if the object exist
{
// code
// ...
}