What does var really do in the following case?
var productInfos =
from p in products
select new { p.ProductName, p.Category, Price = p.UnitPrice };
|
What does
|
||||
|
|
Var is a placeholder for a compiler-created ("anonymous") type that has three properties, ProductName, Category and Price. It is NOT a variant (e.g. as in Visual Basic). It is a concrete type and can be used as such in other places in the code. |
||||
|
|
|
The two lines:
and
are equivalent.
|
|||||
|
|
In this particular case, the type of productInfos is a compiler-generated Anonymous Type with 3 properties, ProductName, Category and Price. |
|||
|
|
|
variables with var are implicitly typed local variable which are strongly typed just as if you had declared the type yourself, but the compiler determines the type. it gets the type of the result. and here a nice read C# Debate: When Should You Use var? and here another C# 3.0 Tutorial |
||||
|
|
|
var = programmer friendly = less typing = makes you lazy(another way of looking at it) = brings obscurity to code if new to 3.5 FW |
|||
|
|
|
It eases you from the pain of having to declare the exact type of your query result manually. But I have to empathize, this is not dynamic typing: the |
|||
|
|