Is the var type an equivalent to Variant in VB? When object can accept any datatype, what is the difference between those two?
|
Beginning in Visual C# 3.0, variables that are declared at method scope can have an implicit type
var isn't object You should definitely read this : C# 3.0 - Var Isn't Object |
|||||
|
|
The other answers are right on, I'd just like to add that you can actually put your cursor on the 'var' keyword and hit F12 to jump to the inferred type declaration. |
|||||||
|
|
Nope - var just means you're letting the compiler infer the type from the expression used to assign a value to the variable. It's just syntax sugar to let you do less typing - try making a method parameter of type "var" and see what happens :] So if you have a an expression like:
x will be of type Widget, not object. |
|||||||
|

dynamicadds yet more confusion ;-p – Marc Gravell♦ Oct 12 '09 at 6:06