Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C#, is there a difference between default(Nullable<long>); (or default(long?);) and default(long); ?

Long is just an example, it may be other types.

share|improve this question
10  
Takes about 30 seconds to try it by yourself. Yes, null and 0. – Hans Passant Oct 12 '11 at 0:47
1  
-1 Your question does not indicate any research effort. – Kiley Naro Oct 12 '11 at 0:49
Ye...you're right. I'm not at a compiler though...so I thought to ask. Will test these in the future rather than ask...question can be deleted if moderator wants. – user389823 Oct 12 '11 at 0:54
2  
Check out ideone.com for an online compiler – Scott Oct 12 '11 at 1:47

1 Answer

up vote 8 down vote accepted

Well yes. The default value of a nullable or other reference type is null while the default value for a long or other value type is 0 (and any other members set to their defaults).

In this case:

default(Nullable<long>) == null
default(long?) == null

default(long) == 0L
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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