Search Results

0
votes

In c# when is the var keyword different from typing it out

It works as it should. It puts the object type as "object" when the compiler is unable to determine the correct data type. …
0
votes

nullable var using implicit typing in c#?

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 nullabl …