Possible Duplicates:
C# ‘var’ keyword versus explicitly defined variables
Use of var keyword in C#
May I know where to use 'var' keyword and the purpose of using that there ?
Possible Duplicates:
C# ‘var’ keyword versus explicitly defined variables
Use of var keyword in C#
May I know where to use 'var' keyword and the purpose of using that there ?
Sure, just check one of the many links here : https://stackoverflow.com/search?q=c%23+var+keytword ;)
You can use the var keyword to infer the type of an object.
For example:
//without using the "var" keyword
Dictionary<List<string>,int> myCustomDictionary = new Dictionary<List<string>, int>();
//with the "var" keyword
var myCustomDictionary = new Dictionary<List<string>, int>();
Which is easier to read? :)