Is there anyway to have the var be of a nullable type?
This implicitly types i as an int, but what if I want a nullable int?
var i = 0;
Why not support this:
var? i = 0;
|
|
|||
|
|
|
Why support it? If that's what you mean, you should say (Well, you should probably just say |
||
|
|
|
|
Try this - is this what you're talking about?
|
||
|
|
|
|
My answer is kind of along these lines. "var" is implicitly typed. It figures out what type it is by the value supplied on the right-hand side of the assignment. If you tell it that it's nullable it has no idea what type to be. Remember, once it's assigned, that's the type it's going to be forever. |
||
|
|
|
|
The problem deals with nullable types. For instance, you cannot create a nullable string, which in turn prevents you from creating a nullable var, since var could be a string. |
||
|
|
|
|
|
||
|
|