vote up 4 vote down star

I am receiving this error and I'm not sure what it means?

Object reference not set to an instance of an object.

flag

1  
More Information Please. – johnny Apr 22 at 20:34
1  
This is the "check engine light" of .NET errors. You really need to be more detailed when trying to ask for help on SO. – Michael Kniskern Apr 22 at 20:39
1  
Give a bit of grace on this one - clearly a question from a new programmer. – LFSR Consulting Apr 22 at 20:42
4  
+1 to counter the downvote..people need to understand the downvotes for newbies are cruel – TStamper Apr 22 at 20:43

8 Answers

vote up 1 vote down check

dkpatt is right, but also, that is the message associated with a NullReferenceException

for a more detailed explanation, see @Iain's response as to common sources of the NullReferenceException

link|flag
2  
I would suggest that this stackoverflow.com/questions/779091/… is a better answer. – Robert Kozak Apr 22 at 21:02
1  
soo... you downvote me for giving additional information to the prior accepted answer (in which case mine became the accepted answer) because another person posted another answer after mine? well done sir. (and his just has code snippets, but fundamentally comes out the exact same, it's a NullReferenceException) – Darren Kopp Apr 22 at 21:27
I am new to StackOverflow but I thought the idea was to have better answers flow to the top. You may have been first although his answer is similar it is a better more complete answer. Maybe I'll just not worry about downvoting and hope the rest of the crowd upvotes. – Robert Kozak Apr 22 at 21:41
Downvoting should only really be used in extreme circumstances. Like when the answer is incorrect. – Iain Apr 22 at 21:45
1  
downvoting is for answers that are wrong really. answered questions are ALWAYS on top, then ranked by what you have as sort condition (votes is default). i fully concur that Iain's response is better, but i don't have control over what is accepted or not. the idea is best answers will rise to the top (as is shown here also), but you can cast multiple votes for a reason. – Darren Kopp Apr 22 at 21:50
show 2 more comments
vote up 13 vote down

Variables in .NET are either reference types or value types. Value types are primitives such as integers and booleans or structures (and can be identified because they inherit from System.ValueType). Boolean variables, when declared, have a default value:

bool mybool;
//mybool == false

Reference types, when declared, do not have a default value:

class ExampleClass
{
}

ExampleClass exampleClass; //== null

If you try to access a member of a class instance using a null reference then you get a System.NullReferenceException. Which is the same as Object reference not set to an instance of an object.

The following code is a simple way of reproducing this:

static void Main(string[] args)
{
    var exampleClass = new ExampleClass();
    var returnedClass = exampleClass.ExampleMethod();
    returnedClass.AnotherExampleMethod(); //NullReferenceException here.
}

class ExampleClass
{
    public ReturnedClass ExampleMethod()
    {
        return null;
    }
}

class ReturnedClass
{
    public void AnotherExampleMethod()
    {
    }
}

This is a very common error and can occur because of all kinds of reasons. The root cause really depends on the specific scenario that you've encountered.

If you are using an API or invoking methods that may return null then it's important to handle this gracefully. The main method above can be modified in such a way that the NullReferenceException should never be seen by a user:

static void Main(string[] args)
{
    var exampleClass = new ExampleClass();
    var returnedClass = exampleClass.ExampleMethod();

    if (returnedClass == null)
    {
        //throw a meaningful exception or give some useful feedback to the user!
        return;
    }

    returnedClass.AnotherExampleMethod();
}

All of the above really just hints at .NET Type Fundamentals, for further information I'd recommend either picking up CLR via C# or reading this MSDN article by the same author - Jeffrey Richter. Also check out this, much more complex, example of when you can encounter a NullReferenceException.

link|flag
2  
+1 Great Answer! I down voted some of the others to help this one to the top. This is the kind of answer I would like to see when I am looking at questions on StackOverFlow. – Robert Kozak Apr 22 at 21:00
Heh you downvoted other good answers to make this one bubble up? – Robert S. Apr 22 at 21:13
@Robert - that sounds like a very negative thing to do. Downvote if they are unhelpful, misleading or wrong, please don't downvote just because you prefer another answer. Other people took time to give answers and some of them look perfectly accurate and do not deserve or require a downvote. – deadbeef Apr 22 at 21:19
@Robert, thanks for the support! Downvoting is a bit extreme though! Bit unfair for Darren to get negative rep especially since he did post before me. – Iain Apr 22 at 21:32
I'll not worry so much about downvoting. I didn't think downvotes affected so much the rep. I'm new here. I assumed thats how it was supposed to work. – Robert Kozak Apr 22 at 21:43
vote up 5 vote down

Not to be blunt but it means exactly what it says. One of your object references is NULL. You'll see this when you try and access the property or method of a NULL'd object.

link|flag
He can be doing throw new NullReferenceException(); lol... – Jhonny D. Cano -Leftware- Apr 22 at 20:40
1  
It means exactly what it says IF you know what an object is, a reference and instance... all very loaded words when it comes to programming. – LFSR Consulting Apr 22 at 20:44
Jhonny - hahaha I guess you're right – dkpatt Apr 22 at 20:45
vote up 1 vote down

It means you did something like this.

Class myObject = GetObjectFromFunction();

And without doing

if(myObject!=null), you go ahead do myObject.Method();

link|flag
vote up 1 vote down

Here is a thread explaining the common causes of the "Object reference not set to an instance of an object" error.

link|flag
vote up 1 vote down

Most of the time, when you try to assing value into object, and if the value is null, then this kind of exception occur. Please check this link.

for the sake of self learning, you can put some check condition. like

if (myObj== null)
Console.Write("myObj is NULL");
link|flag
vote up 1 vote down

what does this error mean? Object reference not set to an instance of an object.

exactly what it says, you are trying to use a null object as if it was a properly referenced object.

link|flag
vote up 1 vote down

Another easy way to get this:

 Person x = GetPersonFromDatabase();
 // check for x == null... AND for Person.Pet == null
 if ( Person.Pet == "cat" ) <--- fall down go boom!
link|flag
Jay's answer demonstrates another example that isn't covered by any of the other answers here. – Iain Apr 22 at 22:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.