I am reading a .Net book, and in one of the code examples there is a class definition with this field: private DateTime? startdate
What does "DateTime?" mean?
|
|
|
|
|
|
|
Since Adding the question mark turns it into a nullable type, which means that either it is a |
||
|
|
|
|
It's a nullable DateTime. ? after a primitive type/structure indicates that it is the nullable version. DateTime is a structure that can never be null. From MSDN:
DateTime? can be null however. |
|||
|
|
|
|
A ? as a suffix for a value type allows for null assignments that would be othwerwise impossible. http://msdn.microsoft.com/en-us/library/b3h38hb0.aspx
This means that you can write something like this:
DateTime? is syntatically equivalent to Nullable<DateTime>. |
||
|
|
|
|
It's equivalent to Nullable< DateTime>. You can append "?" to any primitive type or struct. |
||
|
|
|
|
it basically gives you an extra state for primitives. It can be a value, or it can be null. It can be usefull in situations where a value does not need to be assigned. So rather than using for example, datetime.min or max, you can assign it null to represent no value. |
||
|
|