Tagged Questions

The exception that is thrown when there is an attempt to dereference a null object reference.

learn more… | top users | synonyms

24
votes
8answers
2k views

What is a NullReferenceException in .NET?

(I'm creating this separate question and answer because every question we get on NullReferenceException is really the same) I have some code and when it executes, it throws a ...
19
votes
4answers
687 views

Why does this extension method throw a NullReferenceException in VB.NET?

From previous experience I had been under the impression that it's perfectly legal (though perhaps not advisable) to call extension methods on a null instance. So in C#, this code compiles and runs: ...
16
votes
3answers
6k views

Using VB.NET IIF I get NullReferenceException

I am doing a little debugging, and so I want to log the eventArgs value I have a simple line that basically does: logLine = "e.Value: " + IIf(e.Value Is Nothing, "", e.Value.ToString()) The way I ...
13
votes
12answers
655 views

How do I enforce null checking?

I'm working on a large project where, even with 10s of 1000s of automated tests and 100% code coverage, we're getting a ridiculous number of errors. About 95% of errors we get are ...
13
votes
2answers
2k views

NullReferenceException when doing InsertOnSubmit in LINQ to SQL

In my database I have a table called StaffMembers when I bring this into my .net Project as through linq-to-sql an entity class StaffMember is created Now I have also created a partial class ...
13
votes
4answers
435 views

How can a readonly static field be null?

So here's an excerpt from one of my classes: [ThreadStatic] readonly static private AccountManager _instance = new AccountManager(); private AccountManager() { } static ...
11
votes
4answers
602 views

c# code seems to get optimized in an invalid way such that an object value becomes null

I have the following code that exhibits a strange problem: var all = new FeatureService().FindAll(); System.Diagnostics.Debug.Assert(all != null, "FindAll must not return null"); ...
10
votes
6answers
4k views

checking if object is null in c#

I would like to prevent further processing on an object if it is null. In the following code I check if the object is null by either: if(!data.Equals(null)) and if(data != null) However, I ...
10
votes
3answers
145 views

Why don't object reference error exceptions in .net tell me which object was null?

Maybe asking the question betrays my lack of knowledge about the process, but then again, there's no better reason to ask! Tracking these down can be frustrating because stack traces can help me know ...
9
votes
5answers
3k views

LINQ InsertOnSubmit: NullReferenceException

I have this code: using DC = MV6DataContext; using MV6; // Business Logic Layer // ... public DC.MV6DataContext dc = new DC.MV6DataContext(ConnectionString); IP ip = new IP(Request.UserHostAddress); ...
8
votes
4answers
253 views

Why does this throw a null reference exception?

This will throw a null reference exception when InnerException is null. String s = " inner exception: " + e.InnerException == null ? "None" : e.InnerException.Message; but this won't: String s = ...
8
votes
4answers
443 views

In C#, should one check references passed to methods against null?

Well, a few months ago I asked a similar question about C and C++, but I've been paying more attention to C# lately due to the whole "Windows Phone" thing. So, in C#, should one bother to check ...
8
votes
6answers
2k views

How did I get this NullReferenceException error here right after the constructor?

I've had an asp.net website running live on our intranet for a couple of weeks now. I just got an email from my application_error emailer method with an unhandled exception. Here it is (ive cleaned ...
7
votes
10answers
816 views

Interview Question in C#

A Technical Lead asked me the following: He created a class, declared an object and initialized it. But in some circumstance we may get "null reference" exception. He commented that there are 1000 ...
7
votes
4answers
1k views

C#, Linq2SQL: Sum() causes exception instead of returning 0 when no rows

I have this code (ok, I don't, but something similar :p) var dogs = Dogs.Select(ø => new Row { Name = ø.Name, WeightOfNiceCats = ø.Owner .Cats ...
6
votes
7answers
296 views

Can Visual Studio tell me which reference threw a NullReferenceException?

I'm writing unit tests for an MVC web app, and I've been getting null reference exceptions because the mocked-up test objects are only partly initialized. I know which line is throwing the exceptions, ...
6
votes
3answers
118 views

C# - Calling methods on a null reference in the context of a using clause is OK?

I was looking at the mvc-mini-profiler designed by the Stack Overflow team on Google Code and one thing on the getting started page struck me as particularly strange: var profiler = ...
6
votes
5answers
153 views

I seem to have fallen into some massive, massive trouble with NullReferenceExceptions

Recently I'm developing a software that parses and displays XML information from a website. Simple enough right? I'm getting LOADS of NullReferenceExceptions. For example, this method: private void ...
6
votes
11answers
2k views

avoiding null reference exceptions

Apparently the vast majority of errors in code are null reference exceptions. Are there any general techniques to avoid encountering null reference errors? Unless I am mistaken, I am aware that in ...
5
votes
0answers
98 views

Null reference exception when generating a url with UrlHelper.Action method

For some reason, when certain bots visit the site, generating a url with the UrlHelper.Action method raises a null exception from System.Web.HttpServerVarsCollection.Get. I've done some debugging and ...
5
votes
5answers
138 views

Why does trying to access a property of null cause an exception in some languages?

The thing that really bothers me the most about some programming languages (e.g. C#, Javascript) is that trying to access a property of null causes an error or exception to occur. For example, in the ...
5
votes
1answer
464 views

Html.OpenIdSelectorScripts helper method throwing NullReferenceException

I keep getting this error when trying to navigate to my LogOn page: System.NullReferenceException: Object reference not set to an instance of an object The line of code that is throwing the ...
5
votes
5answers
332 views

Disposing the members that implement IDisposable

In my Dispose methods (like the one below), everytime i want to call someObj.Dispose() i also have a check for someObj!=null. Is that because of bad design on my part? Is their a cleaner way to ...
5
votes
1answer
534 views

Properly handling possible System.NullReferenceException in lambda expressions

Here's the query in question return _projectDetail.ExpenditureDetails .Where(detail => detail.ProgramFund == _programFund && detail.Expenditure.User == _creditCardHolder) ...
5
votes
3answers
187 views

Why 'Object reference not set to an instance of an object' is not more descriptive?

As a developer, we often encounter that exception: NullReferenceException with the well known error message: Object reference not set to an instance of an object Is it not possible for the ...
5
votes
1answer
188 views

Regex.MatchData returning null: why not Option[String]?

Is there any particular reason why Regex.MatchData.group(i: Int): java.lang.String returns null rather than Option[String]? Is there a "Scala Way" to handle nulls in Scala?
5
votes
4answers
395 views

Visual Studio null reference warning - why no error?

I've noticed something peculiar about Visual Studio. First, try typing this (C#) somewhere in a function: class Foo { public void Bar() { string s; int i = s.Length; ...
5
votes
4answers
2k views

When would SqlCommand.ExecuteReader() return null?

When using calling the SqlCommand.ExecuteReader() method, ReSharper tells me I have a possible NullReference exception when I use the SqlDataReader object afterwards. So with the following code: ...
4
votes
2answers
79 views

Extension Method and Member Method : why each is implemented differently by compilers (internally)?

Consider this code: A a = null; a.f(); //Will it throw NullReferenceException? Will the above throw NullReferenceException? The answer is : it depends on what f() is. If it's a member method, ...
4
votes
3answers
159 views

Can't find why do I have a null reference exception

Below is the code and the problematic line. When I hover with the mouse on src.EnergyServiceLevel, it shows that it's null. How can that be if I'm checking for null in the previous line? My guess ...
4
votes
1answer
434 views

NLog GetCurrentClassLogger() NullReferenceException using StructureMap (Full Trust)

It seems like NLog can't use reflection for GetCurrentClassLogger(), even though my MVC 3 app is deployed in a Full Trust environment on IIS7. I'm using StructureMap 2.6.1 and the problem seems to ...
4
votes
2answers
1k views

What is the correct pattern to protect against NullReferenceExceptions in ASP.NET MVC

UPDATE The issue was a syntax issue. @awrigley shows the correct way to write this in Razor. The following works: @if(Model.Thing.Prop != null) { Html.RenderPartial("SomePartialView", ...
4
votes
2answers
647 views

Catch NullReferenceException or test for Nothing first?

We have a property whose job is to look up a description. If the lookup fails it should show an empty string. So we can code the property like this: If foo.bar Is Not Nothing Then ...
4
votes
9answers
623 views

If null.Equals(null) why do I get a NullReferenceException

I have the following line of code --> var selectedDomainID = lkuDomainType.EditValue.Equals(null) ? string.Empty : lkuDomainType.EditValue; that is, sometimes, generating a NullReferenceException ...
4
votes
3answers
377 views

How to invoke a delegate with a null parameter?

I get a null exception if I try to pass a null parameter to a delegate during an invoke. Here's what the code looks like: public void RequestPhoto() { ...
4
votes
4answers
773 views

Object reference not set to an instance of an object

I have a class Cell: public class Cell { public enum cellState { WATER, SCAN, SHIPUNIT, SHOT, HIT } public Cell() { currentCell = ...
4
votes
2answers
522 views

Interaction between two user controls

I'm on the verge of madness ... In the application I'm actually building, I'm dealing with two dynamically-added controls that need to interact with each other, but I've reduced the problem to an ...
4
votes
6answers
322 views

A nicer way to handle null references in a object hierarcy

I’m looking for a nice way to handle a null reference in object hierarchy. ie: if(null == Object1.Object2.Object3.Property) This example will throw a Null Reference exception if say Object2 is ...
4
votes
6answers
144 views

Should NullRefs ever be caught?

I recently made the statement to a colleague that: NullReferenceExceptions should never be explicitly caught I used the word never.... hmmm. I've never seen a appropriate use case myself for ...
3
votes
1answer
90 views

Ironpython: Debugging a null reference exception

I have previously asked this question when I was seeing a null pointer exception. In that case it turned out that what I was seeing was in fact a bug in IronPython. Now I recently came across this ...
3
votes
2answers
121 views

Ironpython: Function works in CPython, mysterious null pointer exception in IronPython

I'm trying to do something that seems very simple, and falls within the range of standard python. The following function takes a collection of sets, and returns all of the items that are contained in ...
3
votes
6answers
207 views

C# why null after casting

Hi everyone pleas help me i so confused why my code has a null after casting this is the xaml code i have <Window.Resources> <Style x:Key="Menu" TargetType="{x:Type Border}"> ...
3
votes
3answers
408 views

NullReferenceException when assigning a Session variable/value

I have in many places in my ASP.NET project used the Session variable for storing data. I usually write something like this: public uint MyPropery { get { object o = ...
3
votes
1answer
86 views

ReSharper: Possible NullReferenceException with Enumerator?

ReSharper notifies me about a possible System.NullReferenceException for the following code: IEnumerator<IEdgeData> edgeEnumerator = edgeData.GetEnumerator(); while ...
3
votes
3answers
338 views

WPF ObservableCollection.Remove throws NullReferenceException

The code that invokes the remove operation normally works, this is the first time that I've received the NullReferenceException. I'm trying to figure out whether I might be doing something wrong and ...
3
votes
5answers
274 views

Adding an item to a dictionary results in a NullReferenceException

The following code has only thrown a NullReferenceException a handful of times over the last several months, but I'm not exactly sure why. The code isn't mine, but it looks pretty straight forward to ...
3
votes
1answer
682 views

System.NullReferenceException after upgrade to EF 4.1

I have an MVC3 app which was using EF CTP5. After upgrading to EF 4.1 I get NullReferenceException thrown from here: at System.Data.Entity.Internal.RetryAction`1.PerformAction(TInput input) at ...
3
votes
6answers
292 views

Firing an event in C# with no attatched delegate methods?

I've just encountered a bug in the program I'm writing where an exception was thrown stating an "object reference must be set to an instance of an object". Upon investigation, I found that this ...
3
votes
2answers
482 views

Why is a NullReferenceException thrown when a ToolStrip button is clicked twice - openFileDialog.showDialog()?

I created a clean WindowsFormsApplication solution, added a ToolStrip to the main form, and placed one button on it. I've added also an OpenFileDialog, so that the Click event of the ToolStripButton ...
3
votes
5answers
449 views

Why does the '{' throw a NullReferenceException in a static method?

This one is sort of esoteric. I ran into a NullReferenceException while trying to open a form (in the winforms designer) in a winforms project in visual studio 2008. The stack trace points to the ...

1 2 3 4 5 8