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
|
1
|
Hi Everyone Can someone explain to me why a nullable int cant be assigned the value of null e.g
What's wrong with that code? Thanks
|
|||
|
|
|
|
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:
|
||
|
|
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...) |
||
|
|