Nullable type issue with ?: Conditional Operator - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T21:59:50Zhttp://stackoverflow.com/feeds/question/295833http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295833/nullable-type-issue-with-conditional-operator4Nullable type issue with ?: Conditional OperatorNick Gotch2008-11-17T15:18:35Z2008-11-17T15:43:03Z
<p>Could someone explain why this works in C#.NET 2.0:</p>
<pre><code> Nullable<DateTime> foo;
if (true)
foo = null;
else
foo = new DateTime(0);
</code></pre>
<p>...but this doesn't:</p>
<pre><code> Nullable<DateTime> foo;
foo = true ? null : new DateTime(0);
</code></pre>
<p>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'."</p>
<p>Not that I can't use the former, but the second style is more consistent with the rest of my code.</p>
http://stackoverflow.com/questions/295833/nullable-type-issue-with-conditional-operator/295842#29584217Answer by Stewart Johnson for Nullable type issue with ?: Conditional OperatorStewart Johnson2008-11-17T15:21:26Z2008-11-17T15:34:39Z<p>This question has been asked a bunch of times already. The compiler is telling you that it doesn't know how convert <code>null</code> into a <code>DateTime</code>.</p>
<p>The solution is simple:</p>
<pre><code>DateTime? foo;
foo = true ? (DateTime?)null : new DateTime(0);
</code></pre>
<p>Note that <code>Nullable<DateTime></code> can be written <code>DateTime?</code> which will save you a bunch of typing.</p>
http://stackoverflow.com/questions/295833/nullable-type-issue-with-conditional-operator/295846#2958463Answer by MojoFilter for Nullable type issue with ?: Conditional OperatorMojoFilter2008-11-17T15:22:25Z2008-11-17T15:22:25Z<p>It's because in a ternary operator, the two values must be the same type.</p>
http://stackoverflow.com/questions/295833/nullable-type-issue-with-conditional-operator/295851#2958510Answer by DilbertDave for Nullable type issue with ?: Conditional OperatorDilbertDave2008-11-17T15:23:27Z2008-11-17T15:23:27Z<p>Check John Skeets answer <a href="http://stackoverflow.com/questions/202271">here</a> for a good explanation (no credit taken)</p>
http://stackoverflow.com/questions/295833/nullable-type-issue-with-conditional-operator/295859#2958597Answer by FlySwat for Nullable type issue with ?: Conditional OperatorFlySwat2008-11-17T15:25:48Z2008-11-17T15:43:03Z<p>FYI (Offtopic, but nifty and related to nullable types) we have a handy operator just for nullable types called the null coalescing operator</p>
<pre><code>??
</code></pre>
<p>Used like this:</p>
<pre><code>// Left hand is the nullable type, righthand is default if the type is null.
Nullable<DateTime> foo;
DateTime value = foo ?? new DateTime(0);
</code></pre>