c#中的'var'关键字

时间:2010-08-24 16:05:32

标签: c# .net

  

可能重复:
  C# ‘var’ keyword versus explicitly defined variables
  Use of var keyword in C#

我可以知道在哪里使用'var'关键字以及在那里使用它的目的吗?

2 个答案:

答案 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>();

哪个更容易阅读? :)