I have come across some code in a few projects which use if(Is.NotNull(SomeObject)) instead of if(SomeObject != null). Is there any difference between the two methods? When would one use a particular method over the other, or is it just a style choice?
|
|
I've seen Generally the functionality is not going to be any different - the pupose of |
||||
|
|
|
The |
||
|
|
|
|
There can be a subtle difference, if the compile time type of the It's hard to know exactly what's going on here though, as |
||
|
|
|
You may need to look at Is.NotNull() and see if it looks inside the object to determine if it has any values set, for example. It may be that an object is considered null for more reasons than the object value actually being null (or not set). It may be that if some attributes are not set that must be set, then it will also be considered null. |
||
|
|
|
|
Likely there is a difference. If SomeObject has an equals/not equals overload it may no be called for the same reason these two statements are different:
-- or --
The later will use reference equality, while the former might use an operator overload. |
||
|
|
