show/hide this revision's text 2 added 118 characters in body

This question has been asked a bunch of times already. The compiler is telling you that it doesn't know how convert null into a DateTime.

The solution is simple:

Nullable<DateTime> 

DateTime? foo;
foo = true ? (DateTime?)null : new DateTime(0);

Note that Nullable<DateTime> can be written DateTime? which will save you a bunch of typing.

show/hide this revision's text 1

This question has been asked a bunch of times already. The compiler is telling you that it doesn't know how convert null into a DateTime.

The solution is simple:

Nullable<DateTime> foo;
foo = true ? (DateTime?)null : new DateTime(0);