vote up 2 vote down star
double? test = true ? null : 1.0;

In my book, this is the same as

if (true) {
  test = null;
} else {
  test = 1.0;
}

But the first line gives this compiler error:

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

flag

you can always submit the Errata to the book publisher :) or maybe it's already been found and it's in the book Errata (normally in the publisher website) – balexandre May 6 at 10:21
The expression "in my book" means "as far as I know" - it's not a reference to an actual book :-) – Mark Pattison May 6 at 10:25
Your position that one is the same as the other is not borne out by either the language specification or the implementation; those two things are very different indeed! The error message is correct; the language specification requires that the expression be implicitly convertible to double?, which requires in turn that the expression have a known type. The expression does not have a known type, hence the error. – Eric Lippert May 6 at 21:30

4 Answers

vote up 13 vote down check
double? test = true ? null : (double?) 1.0;
link|flag
Thanks, this works! – Robbert Dam May 6 at 10:19
vote up 6 vote down
double? test = true ? (double?)null : 1.0;

will work. That's because there is no conversion from the type of the first expression (null) to the type of the second expression (double).

link|flag
Hehe, same answer just other way around, now a confused :) – leppie May 6 at 10:17
Surprise, both ways work :) – leppie May 6 at 10:18
"Cannot convert null to 'double' because it is a non-nullable value type" – Robbert Dam May 6 at 10:19
This doesn't compile! – bruno conde May 6 at 10:20
darn, missed 75 rep due to forgetting the '?'. :-) – David Schmitt May 6 at 11:10
vote up 0 vote down

Because null is not, actually, implicitly convertable to a double?. Funny as that sounds.

double? test = true ? (double?) null : 1.0;
link|flag
Been said already. – leppie May 6 at 10:18
I was typing it at the same time as everyone else. – J. Steen May 6 at 10:21
This doesn't compile! – bruno conde May 6 at 10:23
Yes, it should be double?, my extreme bad. – J. Steen May 6 at 10:24
I like how the other similar answer got eight upvotes. ;) – J. Steen May 6 at 10:25
vote up 1 vote down

The left hand side of the assignment is not used when deducing the type of an ?: expression.

In b ? A : B, the tyes of A and B must either be the same, or one must be implicitly convertible to the other.

link|flag
1  
There is some subtlety here -- is it that the type of A must be convertible to the type of B, or that A must be convertible to the type of B? The compiler actually gets it wrong! See this post blogs.msdn.com/ericlippert/archive/… for details. – Eric Lippert May 6 at 21:24

Your Answer

Get an OpenID
or

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