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?
|
|
|||
|
|
|
If you look at the IL using ILDasm, you'll find that they both compile down to Nullable<>. |
||
|
|
|
|
There is no difference between |
||
|
|
|
|
A 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# |
||||
|
|
|
Null primitives are just regular primitives wrapped in Nullable. Any appearances to the contrary are just the compiler and syntactical sugar. |
||
|
|
|
|
A But to the question: |
||
|
|
|
To access the value of the bool? you need to do the following:
Note you can't just do:
|
||||
|
|
|
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. |
|||
|
|
