C Sharp Var data type and Anonymous Type - Dot Net Tricks - “Coding is Rhyme”
var data type was introduced in C# 3.0. var is used to declare implicitly typed local variable means it tells the compiler to figure out the type of the variable at compilation time. A var variable must be initialized at the time of declaration....