What’s new in C# 2008
The all new C# 2008 is here and this is what it offers:
1. Implicitly Typed Local Variables and Arrays:
How? by the use of var keyword.
So now you can declare a variable like
var a = “Sunil”;
The good thing is as soon as this is initialized at runtime the compiler will infer its type from the value [...]


