vote up 11 vote down star
2

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?

flag

8 Answers

vote up 26 vote down check

For normal DateTimes, if you don't initialize them at all then they will match DateTime.MinValue, because it is a value type rather than a reference type.

You can also use a nullable DateTime, like this:

DateTime? MyNullableDate;

Or the longer form:

Nullable<DateTime> MyNullableDate;
link|flag
vote up 11 vote down

If you're using .NET 2.0 you can use the nullable type:

DateTime? dt = null;

or

Nullable<DateTime> dt = null;

then later:

dt = new DateTime();

And you can check the value with:

if (dt.ContainsValue)
{
  // Do something with dt.Value
}

Or you can use it like:

DateTime dt2 = dt ?? DateTime.MinValue;

You can read more here:
http://msdn.microsoft.com/en-us/library/b3h38hb0.aspx

link|flag
You can use nullable types even in earlier versions of .NET, no need for 3.0. – stephenbayer Oct 21 '08 at 12:57
Typo, updated that. – Mark Ingram Oct 21 '08 at 12:58
It came in .NET 2.0 right? The ? syntax was added to VB.NET in 3.5, but it has been in C# since 2.0 I believe. – David Mohundro Oct 21 '08 at 12:58
Nullable types are available in .Net 2.0. C# has had the shorthand ? notation from 2.0. Only VB.Net didn't have the shorthand ? in 2.0 but you could use Nullable(Of DateTime) – Mendelt Oct 21 '08 at 12:59
For the last snippet, I would say DateTime dt2 = dt ?? DateTime.MinValue; – Joel Coehoorn Oct 21 '08 at 13:02
show 1 more comment
vote up 3 vote down

I'd consider using a nullable types.

DateTime? myDate instead of DateTime myDate;

link|flag
vote up 3 vote down

You can use a nullable DateTime for this.

Nullable<DateTime> myDateTime;

or the same thing written like this:

DateTime? myDateTime;
link|flag
vote up 1 vote down

You can use a nullable class.

DateTime? date = new DateTime?();
link|flag
vote up 1 vote down

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.

Using Nullable

Nullable

link|flag
vote up 0 vote down

use DateTime?.

link|flag
vote up -2 vote down

I always set the time to DateTime.MinValue. This way I do not get any NullErrorException and I can compare it to a date that I know isn't set.

link|flag
That means you can't tell the difference between "I really need a DateTime here" and "It's optional" - Nullable<DateTime> is a much better solution, IMO. – Jon Skeet Oct 21 '08 at 13:01
? I really do not get your comment. Yeah I know when the DateTime is so far aways of reality is like if it was null... – Daok Oct 21 '08 at 13:03
I am just suggesting an other solution. Instead of repeating what have been suggested already 10 times here. – Daok Oct 21 '08 at 13:04
I mean that your type system can't indicate the optional nature of the value. – Jon Skeet Oct 21 '08 at 13:09
It is convenient, but I view DateTime.MinValue as a value, not a special case condition. It can only lead to problems down the line. I'd go with Nullable<DateTime>. – spoulson Oct 21 '08 at 13:13
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.