Possible Duplicate:
Advantage of var keyword in C# 3.0
yesterday I stumbled upon a recomendation from MS, that I should use var, when ever possible:
http://msdn.microsoft.com/en-us/library/ff926074.aspx
I always thought that using the correct Type would help documenting the code and also help findig bugs at compile time.
What is the reason behind this recomendation?
Best Thomas