Nullable type issue with ?: Conditional Operator - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:59:50Z http://stackoverflow.com/feeds/question/295833 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/295833/nullable-type-issue-with-conditional-operator 4 Nullable type issue with ?: Conditional Operator Nick Gotch 2008-11-17T15:18:35Z 2008-11-17T15:43:03Z <p>Could someone explain why this works in C#.NET 2.0:</p> <pre><code> Nullable&lt;DateTime&gt; foo; if (true) foo = null; else foo = new DateTime(0); </code></pre> <p>...but this doesn't:</p> <pre><code> Nullable&lt;DateTime&gt; 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 '&lt;null&gt;' 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#295842 17 Answer by Stewart Johnson for Nullable type issue with ?: Conditional Operator Stewart Johnson 2008-11-17T15:21:26Z 2008-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&lt;DateTime&gt;</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#295846 3 Answer by MojoFilter for Nullable type issue with ?: Conditional Operator MojoFilter 2008-11-17T15:22:25Z 2008-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#295851 0 Answer by DilbertDave for Nullable type issue with ?: Conditional Operator DilbertDave 2008-11-17T15:23:27Z 2008-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#295859 7 Answer by FlySwat for Nullable type issue with ?: Conditional Operator FlySwat 2008-11-17T15:25:48Z 2008-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&lt;DateTime&gt; foo; DateTime value = foo ?? new DateTime(0); </code></pre>