up vote 14 down vote favorite
3
share [g+] share [fb]

Could someone explain why this works in C#.NET 2.0:

	Nullable<DateTime> foo;
	if (true)
		foo = null;
	else
		foo = new DateTime(0);

...but this doesn't:

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

The latter form gives me an compile error "Type of conditional expression cannot be determined because there is no implicit conversion between '<null>' and 'System.DateTime'."

Not that I can't use the former, but the second style is more consistent with the rest of my code.

link|improve this question

4  
You can save yourself a lot of typing by using DateTime? instead of Nullable<DateTime>. – Stewart Johnson Nov 17 '08 at 15:24
feedback

4 Answers

up vote 30 down vote accepted

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:

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.

link|improve this answer
Yeah, what he said. – MojoFilter Nov 17 '08 at 15:23
Perfect, that works, thanks! – Nick Gotch Nov 17 '08 at 15:24
feedback

FYI (Offtopic, but nifty and related to nullable types) we have a handy operator just for nullable types called the null coalescing operator

??

Used like this:

// Left hand is the nullable type, righthand is default if the type is null.
Nullable<DateTime> foo;
DateTime value = foo ?? new DateTime(0);
link|improve this answer
How does this answer his question?? – Stewart Johnson Nov 17 '08 at 15:32
Nick is trying to assign null to foo if some condition is true. The null coalesce will assign DateTime(0) to value if foo is null. The two are completely unrelated. – Jeromy Irvine Nov 17 '08 at 15:40
1  
Hence the FYI, offtopic but a nice thing to know. – FlySwat Nov 17 '08 at 15:42
Ah, OK. It is pretty useful to know. – Jeromy Irvine Nov 17 '08 at 19:13
feedback

It's because in a ternary operator, the two values must be the same type.

link|improve this answer
feedback

I can't see a good reason why the compiler doesn't like it. There doesn't seem to be any ambiguity to infer the correct type if null were not to be explicitly cast...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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