可能重复:
C# ‘var’ keyword versus explicitly defined variables
Use of var keyword in C#
我可以知道在哪里使用'var'关键字以及在那里使用它的目的吗?
答案 0 :(得分:0)
当然,只需查看此处的众多链接之一:https://stackoverflow.com/search?q=c%23+var+keytword;)
答案 1 :(得分:0)
您可以使用var关键字推断对象的类型。
例如:
//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>();
哪个更容易阅读? :)