vote up 5 vote down star

I always used (a)Nullable<>.HasValue because I liked the semantics. However, recently I was working on someone else's existing code base where they used (b)Nullable<> == null exclusively instead. Is there a reason to use one over the other, or is it purely preference?

(a)

int? a;
if(a.HasValue)
    ...

(b)

int? b;
if(b != null)
    ...
flag

64% accept rate
I asked a similar question... got some good answers:stackoverflow.com/questions/633286/… – nailitdown Mar 24 at 3:32
Seems like (a) has an extraneous '!', shouldn't it be if (a.HasValue) to better compare with (b)? – Dave Mar 24 at 4:16
Yeah, it should. Thanks. – lc Mar 24 at 5:10

2 Answers

vote up 12 vote down check

The compiler replaces null comparisons with a call to HasValue, so there is no real difference. Just do whichever is more readable/makes more sense to you and your colleagues.

link|flag
1  
I would add to that "whichever is more consistent/follows an existing coding style." – jleedev Mar 24 at 4:08
vote up 1 vote down

I prefer (a != null) so that the syntax matches reference types.

link|flag

Your Answer

Get an OpenID
or

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