C#: Is there any difference between bool? and Nullable<bool> ?

Posted by MojoFilter on Stack Overflow See other posts from Stack Overflow or by MojoFilter
Published on 2008-09-11T13:25:20Z Indexed on 2010/04/07 9:53 UTC
Read the original article Hit count: 148

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET