vote up 0 vote down star

How do I determine if an object reference is null in C# w/o throwing an exception if it is null?

i.e. If I have a class pointer being passed in and I don't know if it is null or not.

flag

80% accept rate

9 Answers

vote up 11 vote down check

testing against null will never* throw an exception

void DoSomething( MyClass value )
{
    if( value != null )
    {
        value.Method();
    }
}


* never as in should never. As @Ilya Ryzhenkov points out, an incorrect implementation of the != operator for MyClass could throw an exception. Fortunately Greg Beech has a good blog post on implementing object equality in .NET.

link|flag
There's at least one way it'll throw: theObj.Equals( null) – Michael Burr Oct 14 '08 at 20:26
or if ( value == null) Thanks! – Fred Oct 14 '08 at 20:27
And this works only with reference type – milot Oct 14 '08 at 20:28
@Mike B. Technically that's not testing against null, but invoking the method Equals() on theObj, which, as you say, will throw an exception if theObj reference is null. – Robert Paulson Oct 14 '08 at 20:32
vote up 4 vote down
if(p != null)
{
   DoWork(p);
}

Also, the 'as' keyword is helpful if you want to detect if a class is of the right type and use it all at once.

IExample e = p as IExample;
if(e != null)
    DoWork(e);

In the above example if you were to cast e like (IExample)e it will throw an exception if e does not implement IExapmle. If you use 'as' and e doesn't implement IExample e will simply be null.

link|flag
vote up 2 vote down

Note, that having operator != defined on MyClass would probably lead do different result of a check and NullReferenceException later on. To be absolutely sure, use object.ReferenceEquals(value, null)

link|flag
vote up 1 vote down

What Robert said, but for that particular case I like to express it like this, rather than nest the whole method body in an if block:

void DoSomething( MyClass value )
{
    if ( value == null )
    {
        // I might throw an exception here, too
        return;
    }

    value.Method();
}
link|flag
I think you mean 'value == null'. Calling value.Method() on a null object would be bad. – just in case Oct 14 '08 at 20:26
Yeah, that's what I get for copy/pasting. Fixed now. – Joel Coehoorn Oct 14 '08 at 20:32
> I might throw an exception here, too: if so, probably throw new ArgumentNullException("value"); – Joe Oct 14 '08 at 20:36
vote up 1 vote down

It's nit picky, but I always code these like ...

if (null == obj) {
   obj = new Obj();
}

instead of

if (obj == null) {
   obj = new Obj();
}

to avoid accidently writing

if (obj = null) {
   obj = new Obj();
}

because

if (null = obj) {
   obj = new Obj();
}

will give you a compiler error

link|flag
if (obj = null) gives you the "possible misuse of =" compiler warning – Jimmy Oct 14 '08 at 21:33
vote up 1 vote down

If you look in the majority of the .NET framework source code you will see they put checks like this at the top of their functions.

public void DoSomething(Object myParam)
{
  if (myParam == null) throw new ArgumentNullException("myParam");

  // Carry on
}
link|flag
Good advice for a public interface where a null reference is invalid in the context of the called method. – Robert Paulson Oct 14 '08 at 21:02
vote up 0 vote down

Or if you are using value types you can read about nullable types: http://www.c-sharpcorner.com/UploadFile/mosessaur/nullabletypes08222006164135PM/nullabletypes.aspx

link|flag
vote up 0 vote down
(YourObject != Null)

you can compare to null?

If it's null instead of throwing an exception you can initialize your object. You can use the Null Pattern.

link|flag
fyi - YouTube video of a code example for the Null Pattern youtube.com/watch?v=hp1Y9bhail8 – Robert Paulson Oct 14 '08 at 20:35
vote up 0 vote down

I have in the application's xaml.cs application derivative definition:

private SortedList myList;

And I want to be able to re-use my constructors. So I needed:

if ( myList == null)
   myList = new SortedList();

Thanks Robert!

link|flag

Your Answer

Get an OpenID
or

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