This question already has an answer here:
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?
|
This question already has an answer here: Can someone explain to me why a nullable int cant be assigned the value of null e.g
What's wrong with that code? |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
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 the same type, or one must be implicitly convertible to the other. In this case, null cannot be implicitly converted to int nor vice-versus, so an explict cast is necessary. Try this instead:
|
|||||||||||||||||||
|
|
What Harry S stays is exactly right, but
would also do the trick. (We Resharper users can always spot each other in crowds...) |
|||||
|
|
Another option is to use
I like this one most. |
||||
|
|
|
Similarly I did for long:
|
||||
|
|