I've been searching a lot but couldn't find a solution. How do you deal with a DateTime that should be able to contain an uninitialized value (equivalent to null)? I have a class which might have a DateTime property value set or not. I was thinking of initializing the property holder to DateTime.MinValue, which then could easily be checked. I guess this is a quite common question, how do you do that?
|
For normal DateTimes, if you don't initialize them at all then they will match You can also use a nullable DateTime, like this:
Or the longer form:
And, finally, there's a built in way to reference the default of any type. This returns null for reference types, but for our DateTime example it will return the same as DateTime.MinValue:
|
|||||||
|
|
If you're using .NET 2.0 (or later) you can use the nullable type:
or
then later:
And you can check the value with:
Or you can use it like:
You can read more here: |
|||||||||||
|
|
I'd consider using a nullable types. DateTime? myDate instead of DateTime myDate; |
|||
|
|
|
You can use a nullable DateTime for this.
or the same thing written like this:
|
|||
|
|
|
DateTime? MyDateTime{get;set;}
|
||||
|
|
|
I always set the time to |
|||||||||||||||
|
|
You can set the DateTime to Nullable. By default DateTime is not nullable. You can make it nullable in a couple of ways. Using a question mark after the type DateTime? myTime or using the generic style Nullable. I have added a couple of links on msdn. |
|||
|
|
|
If you are, sometimes, expecting null you could use something like this:
In your repository use null-able datetime.
|
|||
|
|
