vote up 3 vote down star
1

Hi Everyone

Can someone explain to me why a nullable int cant be assigned the value of null e.g

int? accom = (accomStr == "noval" ? null  : Convert.ToInt32(accomStr));

What's wrong with that code?

Thanks

flag

9% accept rate

2 Answers

vote up 13 vote down

The problem isn't that null cannot be assigned to an int?. The problem is that both values returned by the ternary operator must be of the same type. Try this instead:

int? accom = (accomStr == "noval" ? (int?)null : (int?)Convert.ToInt32(accomStr));
link|flag
It's interesting - you don't actually need the cast for Convert.ToInt32... – Joe90 Dec 1 '08 at 10:44
It's because System.Int32 != System.Nullable<Int32> – Slace Dec 1 '08 at 10:59
vote up 6 vote down

What Harry S stays is exactly right, but

int? accom = (accomStr == "noval" ? null : (int?)Convert.ToInt32(accomStr));

would also do the trick. (We Resharper users can always spot each other in crowds...)

link|flag

Your Answer

Get an OpenID
or

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