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.
|
|
|
|
|
|
|
testing against null will never* throw an exception
* 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. |
||||||||
|
|
|
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. |
|||
|
|
|
Or if you are using value types you can read about nullable types: http://www.c-sharpcorner.com/UploadFile/mosessaur/nullabletypes08222006164135PM/nullabletypes.aspx |
||
|
|
|
|
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:
|
||||||
|
|
|
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.
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. |
||
|
|
|
|
I have in the application's xaml.cs application derivative definition:
And I want to be able to re-use my constructors. So I needed:
Thanks Robert! |
|||
|
|
|
|
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) |
||
|
|
|
|
It's nit picky, but I always code these like ...
instead of
to avoid accidently writing
because
will give you a compiler error |
||
|
|
|
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.
|
||
|