More elegant way to iterate collections
In Visual Studio, after typing foreach, press tab button twice
foreach [tab] [tab]
foreach(Car car in cars){ result += car.Make; }
Implicitly Typed Local Variables with the var Keyword
(Applies to locally scoped variable declarations)
Compiler is smart enough to figure out the data type when you initialize the variable.
Become increasingly important because sometimes its difficult to know what the data type is supposed to be(LinQ)
int hitPoints = 0; //........... is equivalent of................. var heroName = "Pentagorn"; var Cars = new List(){.....}
Rules:
- Must initialize the variable
- Variable is permanently set to implicit data type.
- Can not be used for a PUBLIC property/variable.