Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

I've just started using ReSharper with Visual Studio (after the many recommendations on SO). To try it out I opened up a recent ASP.NET MVC project. One of the first and most frequent things I've noticed it suggesting is to change most/all my explicit declarations to var instead. For example:

//From This:
MyObject foo = DB.MyObjects.SingleOrDefault(w => w.Id == 1);
//To This:
var foo = DB.MyObjects.SingleOrDefault(w => w.Id == 1);

and so on, even with simple types such as int, bool, etc.

Why is this being recommended? I don't come from a computer science or .NET background, having "fallen into" .NET development recently, so I'd really like to understand what's going on and whether it's of benefit or not.

share|improve this question
2  
I've been thinking about this for a while and I came to conclusion that I should always use var, even when the type is not obvious at all! the reason is because it forces me to choose the most descriptive name I can come up with and ultimately that makes the code much, much more readable. Ultimately it also helps to separate the logic from the implementation. Of course that's just my opinion, I hope it would help someone ;). – Ken Jan 30 at 9:45
Only because its stupid. – Evgeny Feb 6 at 15:25

marked as duplicate by nawfal, Ralf de Kleine, Mario, IronMan84, Laurent Etiemble Apr 19 at 15:11

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

13 Answers

up vote 43 down vote accepted

One reason is improved readability. Which is better?

Dictionary<int, MyLongNamedObject> dictionary = new Dictionary<int, MyLongNamedObject>();

or

var dictionary = new Dictionary<int, MyLongNamedObject>();
share|improve this answer
24  
I would say the first one. Easier to see whats going on! – Mongus Pong Dec 9 '09 at 13:30
71  
SO's scrollbar is making a point here I guess ;) – Bryan Menard Dec 9 '09 at 13:31
11  
Fungus: Do you like Do you like Redundant Text Redundant Text? :D – Mark Simpson Dec 9 '09 at 13:32
4  
@Fungus: add also a comment to make it absolutely clear: declaring the 'dictionary' variable of type 'Dictionary<int, MyLongNamedObject>':) – Kamarey Dec 9 '09 at 14:03
3  
Being explicit is more clear in my opinion. Using var to much creates a headache in some scenarios. – user1231231412 Jan 9 '12 at 15:43
show 8 more comments

What ReSharper suggests is clearly overuse of the var keyword. You can use it where the type is obvious:

var obj = new SomeObject();

If the type is not obvious, you should rather write it out:

SomeObject obj = DB.SomeClass.GetObject(42);
share|improve this answer
2  
To play devils advocate, maybe if the type is not clear from the method or the variable name, it indicates a problem with naming more then an overuse of var. I do agree in principal though, var should only be used when it is not removing clarity. – Matt Briggs Dec 9 '09 at 13:40
6  
In this instance I would rather use better variable names. You are basically proposing that we look up to see where the variable is defined to figure out the type - I am proposing that we name the variables better so that we know the purpose of the variable offhand. – Jaco Pretorius Dec 9 '09 at 13:41
2  
@Jaco: +1, but it's worth to mention that information about type is not recommended to be in a variable name. For example, Hungarian notation is not considered to be a good practice. – Roman D. Boiko Dec 9 '09 at 13:55
3  
Whether ReSharper's default settings are an overuse of var is a matter of opinion, and not "clearly" one thing or another. I prefer not to type things that the compiler can figure out for itself. I like C# type inference, and often wish it was as good as F# type inference. If I could, I'd leave out explicit types from method parameters and return types, as is the norm in F#. Not everyone agrees, of course. – Joel Mueller Dec 9 '09 at 17:25
I disagree with this example, if you have renamed the method to GetSpecificTypeName you would not have the readibility problem. If you really need a method that returns a generic object type, then the cast to the left of the method will still show the correct type information. In both cases the type used on the LHS of the code line will be easily inferred from best practise coding on the RHS. – Anonymous Type Jan 28 at 23:47
show 5 more comments

I personally prefer to turn this suggestion off. Using var can often improve readability; but as you mentioned, it sometimes reduces it (with simple types, or when the resulting type is obscure).

I prefer to choose when I use var and when I don't. But again, that's just me.

share|improve this answer
3  
I thought ReSharper was meant to be pretty smart; Shouldn't it be smart enough to know when the resulting type is obvious (e.g. anything with the new keyword) and when it is not obvious? – DisgruntledGoat Dec 9 '09 at 13:42
1  
Well, I don't know the peculiarities of the feature but, I sure know I was overwhelmed by the amount of suggestions it gave; And I use var fairly often too. – Bryan Menard Dec 9 '09 at 13:48
2  
I found out that when you always use var (like resharper suggest), it force you to name your variables properly. – AngeDeLaMort Jan 28 '11 at 13:46

I disliked this as well.

I dont want this to turn into a debate on the use of var, it has its uses but should not be used everywhere.

The key thing to remember is ReSharper is configured to whatever coding standards you want.

Edit: ReSharper and var

share|improve this answer

ReSharper recommends var because it tends to unclutter object creation.

Compare these two examples:

StringBuilder bld = new StringBuilder();

var bld = new StringBuilder();

It's just a shorthand that is supposed to be easier to read.

i think it's fine when you create new objects explicitly with "new". In your example however, it might not be obvious if the classes were not named properly.

share|improve this answer

I am surprised that nobody mentioned that it is also easier to change the type of the instantiated object, because

AVeryLongTypeName myVariable = new AVeryLongTypeName( arguments );

is a form of repetition. If I want to change AVeryLongTypeName into one of its derived classes, I need only change this once when using var and still can access methods of the child classes.

Aside from that, the improved readability is an important point, but as others said, var should not be overused, so I think turning the hint off in Resharper is absolutely ok.

share|improve this answer

The var feature of .Net 3.0 is just type inference, which is type safe and often makes your code easier to read. But you don't have to, and can turn that recommendation off in resharper if you want.

share|improve this answer

BTW, ReSharper draws a distinction between 'you might want to apply this suggestion to your code' and 'your code is broken, want me to fix it?'. The var keyword is in the suggestion category, along with things like "invert if to reduce nesting"; you don't have to follow it.

You can configure how annoying each of its alerts are through the Options dialog, or directly though the popup menu for that alert. You can downgrade things like the var suggestion so they're less prominent, or you can upgrade things like the 'use extension method' alert so it shows up as an actual error.

share|improve this answer

The var keyword was introduced in C# 3.0 - it allows us to forget about specifying our type explicitly.

There is no real difference to whether you use

MyObject foo = DB.MyObjects.SingleOrDefault(w => w.Id == 1);

or

var foo = DB.MyObjects.SingleOrDefault(w => w.Id == 1);

except pure readability and less chance for error.

It seems like a clichéd example, but say the following may help your understanding:

var myInt = 23;

returns an int type, whereas

var myInt = "23";

returns a string type.

MSDN reference

share|improve this answer

There is no technical difference, if you use var, the type is implied by the compiler. If you have a code like this:

var x = 1;

x is implied to be an int and no other values can be assigned to it.

The var keyword is useful if you change the type of the variable; you then only have to make one change instead of two:

var x = 1; --> var x = "hello";
int x = 1; --> string x = "hello";
share|improve this answer

var can increase readability of code while decreasing immediate comprehension of the code. Just the same, it can decrease readability of the code for other situations. Sometimes the use of it is neutral. The measure of readability to comprehension isn't proportional but depends on the situation. Sometimes both are increased or decreased together.

The factor is what var's being applied to and how well the target supports immediate obfuscation of its data type to the reader, or if its type info is needed to comprehend the program portion at hand.

For example, bad naming can to lead to var causing decrease of code comprehension. This is not var's fault though:

var value1 = GetNotObviousValue(); //What's the data type? 
//vs. 
var value2 = Math.Abs(-3); // Obviously a numeric data type. 

Sometimes it doesn't make sense to use var for simple data types when code is more readable in its absence:

var num = GetNumber(); // But what type of number?
// vs. 
double num = GetNumber(); // I see, it's a double type. 

Sometimes var can be useful to hide data type information that you don't necessarily care to see the complexities of:

    IEnumerable<KeyValuePair<string,List<Dictionary<int,bool>>>> q = from t in d where t.Key == null select t; // OMG! 
    //vs. 
    var q = from t in d where t.Key == null select t;

    // I simply want the first string, so the last version seems fine.  
    q.First().Key; 

You must use var when there's an anonymous type present because there's no identifier name to call it by:

var o = new { Num=3, Name="" };

When you have Visual Studio Intellisense providing type information in spite of var, you then need to rely less on your understanding via strict code reading without an aid. It's probably wise to assume not everybody may have or use Intellisense.

In summary based on the above examples, I'd suggest carte blanche application of var is not a good idea because most things are best done in moderation and based on the circumstance at hand as shown here.

Why does Resharper use it all over by default? I'd suggest for ease, because it can't parse the nuances of situations to decide when best not to use it.

share|improve this answer

There is no technical difference (as eWolf pointed out). You can use one or the other, the generated CLR code will look the same.

In my opinion the main benefit is that this tends to force you to use better variable naming. In your example 'foo' is a pretty poor choice for a variable name.

share|improve this answer

Specifying an explicit object type is somehow redundant. Even translated in english, the it sounds redundant: "put an object of type X in a variable of type X" vs "Put an object of type X in a variable".

However, using 'var' has its limitations. It prevents the below usage of polymorphism which is pure beauty:

Assume an Dog extends Animal; Cat extends Animal class hierarchy:

Animal x = new Dog();
DoStuffWithDog(x as Dog);

x = new Cat();
DoStuffWithCat(x as Cat);

void DoStuffWithDog(Dog d){}
void DoStuffWithCat(Cat c){}

The same code, with x declared with 'var' will not compile.

var x = new Dog(); // from this point, x is a Dog
DoStuffWithDog(x as Dog);

x = new Cat(); // cannot assign a Cat instance to a Dog
DoStuffWithCat(x as Cat);

void DoStuffWithDog(Dog d){}
void DoStuffWithCat(Cat c){}

Anyways, back to the original question, I don't use Resharper, but I assume that is is smart enough to detect when to not use 'var'. :-)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.