Is there any performance penalty in using the var declaration in c# 3.0+? Resharper is constantly nagging me to use it liberally, and I want to know if there is any downside to it.
|
|
|||
|
|
|
The var keyword only tells the compiler to infer the type from the assignment, so in essence there's no runtime difference, so no, there's no penalty performancewise. Whether there are downsides, that's a different story. |
||
|
|
|
|
There is no performance penalty, as the type inference is at compiletime. However, it can make your code harder to follow due to the lack of explicit typing. |
||||||
|
|
|
No there isn't. The generated IL code is exactly the same. The gain is more readable source code (in most cases anyway). See also this question. |
||
|
|
|
|
There is no penalty whatsoever. Before effective compilation the compiler replaces the var with the appropiate determined-at-compile-time type. To be more credible I even made a small app to demonstrate this with the use of ex-Lutz Roeder's reflector, now Red Gate's Reflector : Version 1 : Code :
CIL generated (CIL means Common Intermediary Language ... kind of like Java's bytecode) :
Version 2 (notice the replacement of "Var" with "Person" on line 7 of the code snippet) Code :
CIL generated
Absolutely no difference in the generated CIL! So that's all that matters ;) Edit 1 : This was compiled in Debug mode... prolly in Release the nop's would not be there... ;) |
||
|
|
