I have some code and when it executes, it throws a NullReferenceException
, saying:
Object reference not set to an instance of an object.
What does this mean, and what can I do to fix this error?
I have some code and when it executes, it throws a NullReferenceException
, saying:
Object reference not set to an instance of an object.
What does this mean, and what can I do to fix this error?
What is the cause?
Bottom Line
You are trying to use something that is
null
(orNothing
in VB.NET). This means you either set it tonull
, or you never set it to anything at all.Like anything else,
null
gets passed around. If it isnull
in method "A", it could be that method "B" passed anull
to method "A".null
can have different meanings:NullReferenceException
.null
intentionally to indicate there is no meaningful value available. Note that C# has the concept of nullable datatypes for variables (like database tables can have nullable fields) - you can assignnull
to them to indicate there is no value stored in it, for exampleint? a = null;
where the question mark indicates it is allowed to store null in variablea
. You can check that either withif (a.HasValue) {...}
or withif (a==null) {...}
. Nullable variables, likea
this example, allow to access the value viaa.Value
explicitly, or just as normal viaa
.Note that accessing it via
a.Value
throws anInvalidOperationException
instead of aNullReferenceException
ifa
isnull
- you should do the check beforehand, i.e. if you have another on-nullable variableint b;
then you should do assignments likeif (a.HasValue) { b = a.Value; }
or shorterif (a != null) { b = a; }
.The rest of this article goes into more detail and shows mistakes that many programmers often make which can lead to a
NullReferenceException
.More Specifically
The runtime throwing a
NullReferenceException
always means the same thing: you are trying to use a reference, and the reference is not initialized (or it was once initialized, but is no longer initialized).This means the reference is
null
, and you cannot access members (such as methods) through anull
reference. The simplest case:This will throw a
NullReferenceException
at the second line because you can't call the instance methodToUpper()
on astring
reference pointing tonull
.Debugging
How do you find the source of a
NullReferenceException
? Apart from looking at the exception itself, which will be thrown exactly at the location where it occurs, the general rules of debugging in Visual Studio apply: place strategic breakpoints and inspect your variables, either by hovering the mouse over their names, opening a (Quick)Watch window or using the various debugging panels like Locals and Autos.If you want to find out where the reference is or isn't set, right-click its name and select "Find All References". You can then place a breakpoint at every found location and run your program with the debugger attached. Every time the debugger breaks on such a breakpoint, you need to determine whether you expect the reference to be non-null, inspect the variable and and verify that it points to an instance when you expect it to.
By following the program flow this way, you can find the location where the instance should not be null, and why it isn't properly set.
Examples
Some common scenarios where the exception can be thrown:
Generic
If ref1 or ref2 or ref3 is null, then you'll get a
NullReferenceException
. If you want to solve the problem, then find out which one is null by rewriting the expression to its simpler equivalent:Specifically, in
HttpContext.Current.User.Identity.Name
, theHttpContext.Current
could be null, or theUser
property could be null, or theIdentity
property could be null.Indirect
If you want to avoid the child (Person) null reference, you could initialize it in the parent (Book) object's constructor.
Nested Object Initializers
The same applies to nested object initializers:
This translates to
While the
new
keyword is used, it only creates a new instance ofBook
, but not a new instance ofPerson
, so theAuthor
the property is stillnull
.Nested Collection Initializers
The nested collection initializers behave the same:
This translates to
The
new Person
only creates an instance ofPerson
, but theBooks
collection is stillnull
. The collection initializer syntax does not create a collection forp1.Books
, it only translates to thep1.Books.Add(...)
statements.Array
Array Elements
Jagged Arrays
Collection/List/Dictionary
Range Variable (Indirect/Deferred)
Events
Bad Naming Conventions:
If you named fields differently from locals, you might have realized that you never initialized the field.
This can be solved by following the convention to prefix fields with an underscore:
ASP.NET Page Life cycle:
ASP.NET Session Values
ASP.NET MVC empty view models
If the exception occurs when referencing a property of
@Model
in an ASP.NET MVC view, you need to understand that theModel
gets set in your action method, when youreturn
a view. When you return an empty model (or model property) from your controller, the exception occurs when the views access it:WPF Control Creation Order and Events
WPF controls are created during the call to
InitializeComponent
in the order they appear in the visual tree. ANullReferenceException
will be raised in the case of early-created controls with event handlers, etc. , that fire duringInitializeComponent
which reference late-created controls.For example :
Here
comboBox1
is created beforelabel1
. IfcomboBox1_SelectionChanged
attempts to reference `label1, it will not yet have been created.Changing the order of the declarations in the XAML (i.e., listing
label1
beforecomboBox1
, ignoring issues of design philosophy, would at least resolve theNullReferenceException
here.Cast with
as
This doesn't throw an InvalidCastException but returns a
null
when the cast fails (and when someObject is itself null). So be aware of that.LINQ FirstOrDefault() and SingleOrDefault()
The plain versions
First()
andSingle()
throw exceptions when there is nothing. The "OrDefault" versions return null in that case. So be aware of that.foreach
foreach
throws when you try to iterate null collection. Usually caused by unexpectednull
result from methods that return collections.More realistic example - select nodes from XML document. Will throw if nodes are not found but initial debugging shows that all properties valid:
Ways to Avoid
Explicitly check for
null
and ignore null values.If you expect the reference sometimes to be null, you can check for it being
null
before accessing instance members:Explicitly check for
null
and provide a default value.Methods call you expect to return an instance can return
null
, for example when the object being sought cannot be found. You can choose to return a default value when this is the case:Explicitly check for
null
from method calls and throw a custom exception.You can also throw a custom exception, only to catch it in the calling code:
Use
Debug.Assert
if a value should never benull
, to catch the problem earlier than the exception occurs.When you know during development that a method maybe can, but never should return
null
, you can useDebug.Assert()
to break as soon as possible when it does occur:Though this check will not end up in your release build, causing it to throw the
NullReferenceException
again whenbook == null
at runtime in release mode.Use
GetValueOrDefault()
for nullable value types to provide a default value when they arenull
.Use the null coalescing operator:
??
[C#] orIf()
[VB].The shorthand to providing a default value when a
null
is encountered:Use the null condition operator:
?.
or?[x]
for arrays (available in C# 6 and VB.NET 14):This is also sometimes called the safe navigation or Elvis (after its shape) operator. If the expression on the left side of the operator is null, then the right side will not be evaluated, and null is returned instead. That means cases like this:
If the person does not have a title, this will throw an exception because it is trying to call
ToUpper
on a property with a null value.In C# 5 and below, this can be guarded with:
Now the title variable will be null instead of throwing an exception. C# 6 introduces a shorter syntax for this:
This will result in the title variable being
null
, and the call toToUpper
is not made ifperson.Title
isnull
.Of course, you still have to check
title
for null or use the null condition operator together with the null coalescing operator (??
) to supply a default value:Likewise, for arrays you can use
?[i]
as follows:This will do the following: If myIntArray is null, the expression returns null and you can safely check it. If it contains an array, it will do the same as:
elem = myIntArray[i];
and returns the ith element.Use null context (available in C# 8):
Introduced in C# 8 there null context's and nullable reference types perform static analysis on variables and provides a compiler warning if a value can be potentially null or have been set to null. The nullable reference types allows types to be explicitly allowed to be null.
The nullable annotation context and nullable warning context can be set for a project using the Nullable element in your csproj file. This element configures how the compiler interprets the nullability of types and what warnings are generated. Valid settings are:
A nullable reference type is noted using the same syntax as nullable value types: a
?
is appended to the type of the variable.Special techniques for debugging and fixing null derefs in iterators
C# supports "iterator blocks" (called "generators" in some other popular languages). Null dereference exceptions can be particularly tricky to debug in iterator blocks because of deferred execution:
If
whatever
results innull
thenMakeFrob
will throw. Now, you might think that the right thing to do is this:Why is this wrong? Because the iterator block does not actually run until the
foreach
! The call toGetFrobs
simply returns an object which when iterated will run the iterator block.By writing a null check like this you prevent the null dereference, but you move the null argument exception to the point of the iteration, not to the point of the call, and that is very confusing to debug.
The correct fix is:
That is, make a private helper method that has the iterator block logic, and a public surface method that does the null check and returns the iterator. Now when
GetFrobs
is called, the null check happens immediately, and thenGetFrobsForReal
executes when the sequence is iterated.If you examine the reference source for LINQ to Objects you will see that this technique is used throughout. It is slightly more clunky to write, but it makes debugging nullity errors much easier. Optimize your code for the convenience of the caller, not the convenience of the author.
A note on null dereferences in unsafe code
C# has an "unsafe" mode which is, as the name implies, extremely dangerous because the normal safety mechanisms which provide memory safety and type safety are not enforced. You should not be writing unsafe code unless you have a thorough and deep understanding of how memory works.
In unsafe mode, you should be aware of two important facts:
To understand why that is, it helps to understand how .NET produces null dereference exceptions in the first place. (These details apply to .NET running on Windows; other operating systems use similar mechanisms.)
Memory is virtualized in Windows; each process gets a virtual memory space of many "pages" of memory that are tracked by the operating system. Each page of memory has flags set on it which determine how it may be used: read from, written to, executed, and so on. The lowest page is marked as "produce an error if ever used in any way".
Both a null pointer and a null reference in C# are internally represented as the number zero, and so any attempt to dereference it into its corresponding memory storage causes the operating system to produce an error. The .NET runtime then detects this error and turns it into the null dereference exception.
That's why dereferencing both a null pointer and a null reference produces the same exception.
What about the second point? Dereferencing any invalid pointer that falls in the lowest page of virtual memory causes the same operating system error, and thereby the same exception.
Why does this make sense? Well, suppose we have a struct containing two ints, and an unmanaged pointer equal to null. If we attempt to dereference the second int in the struct, the CLR will not attempt to access the storage at location zero; it will access the storage at location four. But logically this is a null dereference because we are getting to that address via the null.
If you are working with unsafe code and you get a null dereference exception, just be aware that the offending pointer need not be null. It can be any location in the lowest page, and this exception will be produced.
Update C#8.0, 2019: Nullable reference types
C#8.0 introduces nullable reference types and non-nullable reference types. So only nullable reference types must be checked to avoid a NullReferenceException.
If you have not initialized a reference type, and you want to set or read one of its properties, it will throw a NullReferenceException.
Example:
You can simply avoid this by checking if the variable is not null:
To fully understand why a NullReferenceException is thrown, it is important to know the difference between value types and [reference types][3].
So, if you're dealing with value types, NullReferenceExceptions can not occur. Though you need to keep alert when dealing with reference types!
Only reference types, as the name is suggesting, can hold references or point literally to nothing (or 'null'). Whereas value types always contain a value.
Reference types (these ones must be checked):
Value types (you can simply ignore these ones):
NullReferenceException or Object reference not set to an instance of an object occurs when an object of the class you are trying to use is not instantiated. For example:
Assume that you have a class named Student.
Now, consider another class where you are trying to retrieve the student's full name.
As seen in the above code, the statement Student s - only declares the variable of type Student, note that the Student class is not instantiated at this point. Hence, when the statement s.GetFullName() gets executed, it will throw the NullReferenceException.
A
NullReferenceException
is thrown when we are trying to access Properties of a null object or when a string value becomes empty and we are trying to access string methods.For example:
When a string method of an empty string accessed:
When a property of a null object accessed:
While what causes a NullReferenceExceptions and approaches to avoid/fix such an exception have been addressed in other answers, what many programmers haven't learned yet is how to independently debug such exceptions during development.
In Visual Studio this is usually easy thanks to the Visual Studio Debugger.
First, make sure that the correct error is going to be caught - see How do I allow breaking on 'System.NullReferenceException' in VS2010? Note1
Then either Start with Debugging (F5) or Attach [the VS Debugger] to Running Process. On occasion it may be useful to use
Debugger.Break
, which will prompt to launch the debugger.Now, when the NullReferenceException is thrown (or unhandled) the debugger will stop (remember the rule set above?) on the line on which the exception occurred. Sometimes the error will be easy to spot.
For instance, in the following line the only code that can cause the exception is if
myString
evaluates to null. This can be verified by looking at the Watch Window or running expressions in the Immediate Window.In more advanced cases, such as the following, you'll need to use one of the techniques above (Watch or Immediate Windows) to inspect the expressions to determine if
str1
was null or ifstr2
was null.Once where the exception is throw has been located, it's usually trivial to reason backwards to find out where the null value was [incorrectly] introduced --
Take the time required to understand the cause of the exception. Inspect for null expressions. Inspect the previous expressions which could have resulted in such null expressions. Add breakpoints and step through the program as appropriate. Use the debugger.
1 If Break on Throws is too aggressive and the debugger stops on an NPE in the .NET or 3rd-party library, Break on User-Unhandled can be used to limit the exceptions caught. Additionally, VS2012 introduces Just My Code which I recommend enabling as well.
Another scenario is when you cast a null object into a value type. For example, the code below:
It will throw a
NullReferenceException
on the cast. It seems quite obvious in the above sample, but this can happen in more "late-binding" intricate scenarios where the null object has been returned from some code you don't own, and the cast is for example generated by some automatic system.One example of this is this simple ASP.NET binding fragment with the Calendar control:
Here,
SelectedDate
is in fact a property - ofDateTime
type - of theCalendar
Web Control type, and the binding could perfectly return something null. The implicit ASP.NET Generator will create a piece of code that will be equivalent to the cast code above. And this will raise aNullReferenceException
that is quite difficult to spot, because it lies in ASP.NET generated code which compiles fine...