可能重複:
What's the point of the var keyword?
What advantages does using var have over the explicit type in C#?爲什麼使用var而不是類名?
我總是看到別人產生類似的代碼:
VAR SMTP =新SmtpClient();
但是爲什麼在這種情況下使用var
而不是SmtpClient
?我ALWAYS使用
SmtpClient SMTP =新SmtpClient();
是var
更有效嗎?爲什麼使用var
而不是實際的變量類型?我錯過了什麼嗎?
可能的重複[使用var有什麼優勢超過顯式類型在C#?](http://stackoverflow.com/questions/3425966/what-advantages-does-using-var-have-over-the-顯式類型在C)另請參見[C#'VAR'與特定類型的性能](http://stackoverflow.com/questions/356846/c-sharp-var-vs-specific-type-performance) –
@MattBall大聲笑和**這是**一個重複也 –