The following returns

Type of conditional expression cannot be determined because there is no implicit conversion between 'double' and '<null>'

aNullableDouble = (double.TryParse(aString, out aDouble)?aDouble:null)


The reason why I can't just use aNullableBool instead of the roundtrip with aDouble is because aNullableDouble is a property of a generated EntityFramework class which cannot be used as an out par.

link|improve this question

73% accept rate
feedback

5 Answers

up vote 6 down vote accepted
aNullableDouble = double.TryParse(aString, out aDouble) ? (double?)aDouble : null;
link|improve this answer
feedback

Just blow the syntax out into the full syntax instead of the shorthand ... it'll be easier to read:

aNullableDouble = null;
if (double.TryParse(aString, out aDouble))
{
    aNullableDouble = aDouble;
}
link|improve this answer
Nice. That does add clarity. – kronoz Sep 17 '08 at 14:17
feedback
aNullableDouble = (double.TryParse(aString, out aDouble)?new Nullable<double>(aDouble):null)
link|improve this answer
new Nullabled()?! Isn't that what the double? syntax is for?! – kronoz Sep 17 '08 at 14:16
Yeah, that'll work too. Mine more explicit, but both forms will generate identical code. – James Curran Sep 17 '08 at 14:19
feedback

.NET supports nullable types, but by declaring them as such you have to treat them a bit differently (as, understandably, something which is normally a value type now is sort of reference-ish).

This also might not help much if you end up having to do too much converting between nullable doubles and regular doubles... as might easily be the case with an auto-generated set of classes.

link|improve this answer
feedback

The interesting side-effect of using nullable types is that you can't really use a shorthand IF. Shorthand IF has to return the same Type from both conditions, and it can't be null in either case. So, cast or write it out :)

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.