可能重複:
What to use: var or object name type?
Use of var keyword in C#
What’s the point of the var keyword?
Should I always favour implictly typed local variables in C# 3.0?C#var關鍵字的使用
我剛剛安裝了ReSharper的試用版,以評估它爲我的公司。我注意到一件事是它提示我更改以下(由爲例):
string s = "";
到
var s = "";
是否使用var關鍵字的最佳實踐,而不是使用對象在聲明變量時鍵入?它給了什麼好處。對於上下文,我是一位剛剛過渡到.Net作品的前Java開發人員。
我覺得這回答了你的問題: http://stackoverflow.com/questions/17032/should-i-always-favour-implictly-typed-local-variables-in-c-3-0 – 2009-07-30 08:58:04
Duplicates:http://stackoverflow.com/questions/209199/ whats-the-point-of-var-keyword和http:// stackoverflow。com/questions/236878/what-to-use-var-or-object-name -type – Noldorin 2009-07-30 08:58:34