The var keyword in CSharp can be tremendously useful - but for some, it’s still a source of confusion and something to be avoided at all costs. Here’s my take on when you should use var - and when you should not.
What is “var”?
As a quick refresher for those The var keyword simply requests the compiler to work out the type of a local variable for itself.
Those with long memories might remember the variant data type of Visual Basic 6 - a container that could contain any kind of value at any time. Despite the similarity in naming, the C# var is very different. A local declared with var has a specific type; it’s just that the compiler works it out automatically.
Do use var with anonymous types
With the inclusion of LINQ in C# 3.0 as a part of Visual Studio, the language gained support for anonymous types. The var keyword was introduced to allow local variables to be used - without it, anonymous types couldn’t be stored and manipulated and the feature wouldn’t have bean much use.
If you’re writing a method that uses anonymous types, you must use var for your locals.
Do use var when the type is already obvious
When you new an instance and immediately assign it to a local variable, the actual type is already shown.
Compare this declaration that shows the Type explicitly:
with this declaration using var:
Repeating the type twice just gives readers more to read without actually adding more information.
Similar advice applies when you’re initializing local variables with primitive values or simple expressions:
Don’t use var when you want to control the type
Remember that the var keyword asks the compiler to work out the type for you - if you’re in a situation where the exact type is important, specify the exact Type for clarity.
For example, if you’re writing code that needs to interop with another system, getting the types correct is vital.
Don’t use var when it obfuscates the code
Sometimes the compiler is perfectly able to work out what the type should be, but it’s not obvious to readers of the code.
For example, using an Option Type isn’t (yet) idiomatic C#, so it’s helpful to explicitly show the type to aid in comprehension:
Consider using var when the name is explicit
When the name of the local variable is sufficient to make the type obvious, consider using var to simplify the code.
Conclusions
The var keyword is a useful feature that can be used to improve the readability of code, and to reduce the amount of code that you write.
Comments
blog comments powered by Disqus