vote up 12 vote down star

In C# are the nullable primitive types (i.e. bool?) just aliases for their corresponding Nullable<T> type or is there a difference between the two?

flag

This question should be edited to clarify the name of the primitive type is "bool?" and not "bool". There are good answers below, but the question is unclear. – Chris Conway Sep 11 '08 at 13:49

7 Answers

vote up 13 vote down check

If you look at the IL using ILDasm, you'll find that they both compile down to Nullable<>.

link|flag
vote up 10 vote down

There is no difference between bool? b = null and Nullable<bool> b = null. The ? is just C# compiler syntax sugar.

link|flag
vote up 3 vote down

A Nullable<T> is a structure consisting of a T and a bit flag indicating whether or not the T is valid. A Nullable<bool> has three possible values: true, false and null.

Edit: Ah, I missed the fact that the question mark after "bool" was actually part of the type name and not an indicator that you were asking a question :). The answer to your question, then, is "yes, the C# bool? is just an alias for Nullable<bool>".

link|flag
This didn't answer the question. – spoulson Sep 11 '08 at 13:29
Yes, I realized that after seeing your answer. Thanks! – Curt Hagenlocher Sep 11 '08 at 13:32
vote up 1 vote down

Null primitives are just regular primitives wrapped in Nullable. Any appearances to the contrary are just the compiler and syntactical sugar.

link|flag
vote up 0 vote down

A bool is a value type, therefore it can't contain a NULL value. If you wrap any value type with Nullable<>, it will give it that ability. Moreover, access methods to the value change by additional properties HasValue and Value.

But to the question: Nullable<bool> and bool? are aliases.

link|flag
Why is someone systematically downvoting correct answers? – Konrad Rudolph Sep 11 '08 at 14:13
vote up 0 vote down

To access the value of the bool? you need to do the following:

bool? myValue = true;
bool hasValue = false;

if (myValue.HasValue && myValue.Value)
{
  hasValue = true;
}

Note you can't just do:

if (myValue)
{
  hasValue = true;
}
link|flag
hmm, not sure whether or not to up-vote this as it doesnt answer the question but it's useful and succinct nonetheless! ;-) – rohancragg Sep 11 '08 at 13:48
Well, according to Joel you should up-vote if you find it useful - not neccessarily if it's the answer. But then I would say that ;) – Mark Ingram Sep 11 '08 at 15:05
vote up 0 vote down

No there is no difference. In summary:

System.Boolean -> valid values : true, false

bool -> alias for System.Boolean

Nullable<bool> -> valid values : true, false, null

bool? -> alias for Nullable<bool>

Hope this helps.

link|flag

Your Answer

Get an OpenID
or

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