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.
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