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?
bool?
Nullable<T>
If you look at the IL using Ildasm, you'll find that they both compile down to Nullable<bool>.
Nullable<bool>
1.4m articles
1.4m replys
5 comments
57.0k users