Use of var keyword in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T01:46:23Zhttp://stackoverflow.com/feeds/question/41479http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/41479/use-of-var-keyword-in-c66Use of var keyword in C#kronoz2008-09-03T11:29:57Z2009-11-12T17:44:55Z
<p>After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var?</p>
<p>For example I rather lazily used var in questionable circumstances, e.g.:-</p>
<pre><code>foreach(var item in someList) { // ... } // Type of 'item' not clear.
var something = someObject.SomeProperty; // Type of 'something' not clear.
var something = someMethod(); // Type of 'something' not clear.
</code></pre>
<p>More legitimate uses of var are as follows:-</p>
<pre><code>var l = new List<string>(); // Obvious what l will be.
var s = new SomeClass(); // Obvious what s will be.
</code></pre>
<p>Interestingly LINQ seems to be a bit of a grey area, e.g.:-</p>
<pre><code>var results = from r in dataContext.SomeTable
select r; // Not *entirely clear* what results will be here.
</code></pre>
<p>It's clear what results will be in that it will be a type which implements IEnumerable, however it isn't entirely obvious in the same way a var declaring a new object is.</p>
<p>It's even worse when it comes to LINQ to objects, e.g.:-</p>
<pre><code>var results = from item in someList
where item != 3
select item;
</code></pre>
<p>This is no better than the equivilent foreach(var item in someList) { // ... } equivilent.</p>
<p>There is a real concern about type safety here - for example if we were to place the results of that query into an overloaded method that accepted IEnumerable<int> and IEnumerable<double> the caller might inadvertently pass in the wrong type.</p>
<p><strong>Edit</strong> - var <em>does</em> maintain strong typing but the question is really whether it's dangerous for the type to not be immediately apparent on definition, something which is magnified when overloads mean compiler errors might not be issued when you unintentionally pass the wrong type to a method.</p>
<blockquote>
<p>Related Question: <a href="http://stackoverflow.com/questions/633474/c-do-you-use-var">http://stackoverflow.com/questions/633474/c-do-you-use-var</a></p>
</blockquote>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41484#414840Answer by erlando for Use of var keyword in C#erlando2008-09-03T11:34:54Z2008-09-03T11:48:55Z<p>Oh dear. Microsoft is bringing back VB6.</p>
<p>Unless there is a performance benefit or otherwise to using var I wouldn't use it. IMO the readability of the code drops significantly. There has to be substantial benefits to outweigh the loss of readability.</p>
<p>ETA: I know C# isn't getting VB variants. :) But it's apparently getting VB unreadability.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41486#4148617Answer by Matt Hamilton for Use of var keyword in C#Matt Hamilton2008-09-03T11:35:13Z2008-09-03T11:42:45Z<p>I think the use of var should be coupled with wisely-chosen variable names.</p>
<p>I have no problem using var in a foreach statement, provided it's not like this:</p>
<pre><code>foreach (var c in list) { ... }
</code></pre>
<p>If it were more like this:</p>
<pre><code>foreach (var customer in list) { ... }
</code></pre>
<p>... then someone reading the code would be much more likely to understand what "list" is. If you have control over the name of the list variable itself, that's even better.</p>
<p>The same can apply to other situations. This is pretty useless:</p>
<pre><code>var x = SaveFoo(foo);
</code></pre>
<p>... but this makes sense:</p>
<pre><code>var saveSucceeded = SaveFoo(foo);
</code></pre>
<p>Each to his own, I guess. I've found myself doing this, which is just insane:</p>
<pre><code>var f = (float)3;
</code></pre>
<p>I need some sort of 12-step var program. My name is Matt, and I (ab)use var.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41487#414871Answer by Jon Limjap for Use of var keyword in C#Jon Limjap2008-09-03T11:35:49Z2008-09-03T11:35:49Z<p>In our office, our CTO has categorically banned the use of the var keyword, for the same reasons that you have stated.</p>
<p>Personally I find the use of var only valid in new object declarations, since the type of the object is obvious in the statement itself.</p>
<p>For LINQ queries, you can resolve results to:</p>
<pre><code>IEnumerable<TypeReturnedBySelectObject>
</code></pre>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41488#414882Answer by aku for Use of var keyword in C#aku2008-09-03T11:36:00Z2008-09-03T11:41:08Z<p>I had the same concern when I started to use <em>var</em> keyword.<br />
However I got used to it over time and not going to go back to explicit variable types.
Visual Studio's compiler\intellisense are doing a very good job on making work with implicitly typed variables much easier. </p>
<p>I think that following proper naming conventions can help you to understand code much better then explicit typing.</p>
<p>It seems to be same sort of questions like "shoud I use prefixes in variable names?".<br />
Stick with good variable names and let the compiler think on variable types.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41496#414961Answer by erlando for Use of var keyword in C#erlando2008-09-03T11:45:04Z2008-09-03T11:45:04Z<p>Someone doesn't like criticism of var.. All answers downmodded.. oh well..</p>
<p>@Jon Limjap:
I know. :) What I meant was that the readability is degraded like it is in VB6. I don't like to rely on Intellisense to figure out what type a given variable is. I want to be able to figure it out using the source alone.</p>
<p>Naming conventions doesn't help either - I already use good names. Are we going back to prefixing?</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41501#415016Answer by Murph for Use of var keyword in C#Murph2008-09-03T11:47:35Z2008-09-03T11:47:35Z<p>I think the key thing with VAR is to only use it where appropriate i.e. when doing things in Linq that it facilitates (and probably in other cases). </p>
<p>If you've <em>got</em> a type for something in the then you should use it - not to do so is simple laziness (as opposed to creative laziness which is generally to be encouraged - good programmers oft work very hard to be lazy and could be considered the source of the thing in the first place).</p>
<p>A blanket ban is as bad as abusing the construct in the first place but there does need to be a sensible coding standard.</p>
<p>The other thing to remember is that its not a VB type var in that it can't change types - it <strong>is</strong> a strongly typed variable its just that the type is inferred (which is why there are people that will argue that its not unreasonable to use it in, say, a foreach but I'd disagree for reasons of both readability and maintainability).</p>
<p>I suspect this one is going to run and run (-:</p>
<p>Murph</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41503#415038Answer by Jon Limjap for Use of var keyword in C#Jon Limjap2008-09-03T11:51:16Z2008-09-03T11:51:16Z<p>One specific case where var is difficult: offline code reviews, especially the ones done on paper.</p>
<p>You can't rely on mouse-overs for that.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41505#4150560Answer by Matt Hamilton for Use of var keyword in C#Matt Hamilton2008-09-03T11:53:07Z2008-09-03T11:53:07Z<p>I still think var can make code more readable in some cases. If I have a Customer class with an Orders property, and I want to assign that to a variable, I will just do this:</p>
<pre><code>var orders = cust.Orders;
</code></pre>
<p>I don't care if Customer.Orders is <code>IEnumerable<Order></code>, <code>ObservableCollection<Order></code> or <code>BindingList<Order></code> - all I want is to keep that list in memory to iterate over it or get its count or something later on.</p>
<p>Contrast the above declaration with:</p>
<pre><code>ObservableCollection<Order> orders = cust.Orders;
</code></pre>
<p>To me, the type name is just noise. And if I go back and decide to change the type of the Customer.Orders down the track (say from <code>ObservableCollection<Order></code> to <code>IList<Order></code>) then I need to change that declaration too - something I wouldn't have to do if I'd used var in the first place.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41507#415071Answer by aku for Use of var keyword in C#aku2008-09-03T11:55:57Z2008-09-03T11:55:57Z<p>@erlando, out of curiosity, why do you need to know the variable's type looking at the source code? </p>
<p>In my practice I found that variable type is matter for me only at the time I'm using it in the code. </p>
<p>If I'm trying to do some inappropriate operation on <em>someVar</em> compiler gladly gives me an error\warning.</p>
<p>I really don't care what type <em>someVar</em> has if I understand <em>why</em> it's being used it the given context.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41514#4151448Answer by Konrad Rudolph for Use of var keyword in C#Konrad Rudolph2008-09-03T12:01:01Z2008-09-03T12:01:01Z<p>I use <code>var</code> extensively. There has been criticism that this diminishes the readability of the code, but no argument to support that claim.</p>
<p>Admittedly, it may mean that it's not clear what type we are dealing with. So what? This is actually the point of a decoupled design. When dealing with interfaces, you are emphatically <em>not</em> interested in the type a variable has. <code>var</code> takes this much further, true, but I think that the argument remains the same from a readability point of view: The programmer shouldn't actually be interested in the type of the variable but rather in what a variable <em>does</em>. This is why Microsoft also calls type inference “duck typing.”</p>
<p>So, what does a variable do when I declare it using <code>var</code>? Easy, it does whatever IntelliSense tells me it does. Any reasoning about C# that ignores the IDE falls short of reality. In practice, every C# code is programmed in an IDE that supports IntelliSense.</p>
<p>If I am using a <code>var</code> declared variable and get confused what the variable is there for, there's something fundamentally wrong with my code. <code>var</code> is not the cause, it only makes the symptoms visible. Don't blame the messenger.</p>
<p>Now, the C# team has released a coding guideline stating that <code>var</code> should <em>only</em> be used to capture the result of a LINQ statement that creates an anonymous type (because here, we have no real alternative to <code>var</code>). Well, screw that. As long as the C# team doesn't give me a sound argument for this guideline, I am going to ignore it because in my professional and personal opinion, it's pure baloney. (Sorry; I've got no link to the guideline in question.)</p>
<p>Actually, there are some (superficially) <a href="http://www.devx.com/codemag/Article/37010/0/page/2" rel="nofollow">good explanations</a> on why you shouldn't use <code>var</code> but I still believe they are largely wrong. Take the example of “searchabililty”: the author claims that <code>var</code> makes it hard to search for places where <code>MyType</code> is used. Right. So do interfaces. Actually, why would I want to know where the class is used? I might be more interested in where it is instantiated and this will still be searchable because somewhere its constructor has to be invoked (even if this is done indirectly, the type name has to be mentioned somewhere).</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41516#415165Answer by erlando for Use of var keyword in C#erlando2008-09-03T12:02:03Z2008-09-03T12:02:03Z<p>@aku: One example is code reviews. Another example is refactoring scenarios.</p>
<p>Basically I don't want to go type-hunting with my mouse. It might not be available.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41519#4151915Answer by Frep D-Oronge for Use of var keyword in C#Frep D-Oronge2008-09-03T12:04:57Z2008-09-03T12:04:57Z<p>I don't see what the big deal is..</p>
<pre><code>var something = someMethod(); // Type of 'something' not clear <-- not to the compiler!
</code></pre>
<p>You still have full intellisense on 'something', and for any ambiguous case you have your unit tests, right? ( do you? )</p>
<p>It's not varchar, it's not dim, and it's certainly not dynamic or weak typing. It is stopping maddnes like this:</p>
<pre><code>List<somethinglongtypename> v = new List<somethinglongtypename>();
</code></pre>
<p>and reducing that total mindclutter to:</p>
<pre><code>var v = new List<somethinglongtypename>();
</code></pre>
<p>Nice, not quite as nice as:</p>
<pre><code>v = List<somethinglongtypename>();
</code></pre>
<p>But then that's what <a href="http://www.google.co.uk/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fboo.codehaus.org%2F&ei=XH2-SMO4B4iO1wbX1-Vf&usg=AFQjCNGs4DK8A1ZnEgL7s8pcGjlMMmDOFg&sig2=X0tf_m1xNuEdJ_UetIC19A" rel="nofollow">Boo</a> is for.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41520#415200Answer by aku for Use of var keyword in C#aku2008-09-03T12:07:46Z2008-09-03T12:16:58Z<p>@erlando,</p>
<p>Talking about refactoring it seems to be much easier to change variable type by assigning instance of new type to one variable rather then changing it in multiple places, isn't it ?</p>
<p>As for code review I see no big issues with <em>var</em> keyword. During code review I prefer to check code logic rather variable types. Of course there might be scenarios where developer can use inappropriate type but I think that number of such cases is so small it wouldn't be a reason for my to stop using <em>var</em> keyword.</p>
<p>So I repeat my question. <em>Why</em> does variable type matter to you?</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41523#415233Answer by Daren Thomas for Use of var keyword in C#Daren Thomas2008-09-03T12:10:53Z2008-09-03T12:10:53Z<p>It's a matter of taste. All this fussing about the <em>type</em> of a variable disappears when you get used to dynamically typed languages. That is, <em>if</em> you ever start to like them (I'm not sure if everybody can, but I do).</p>
<p>C#'s <code>var</code> is pretty cool in that it <em>looks</em> like dynamic typing, but actually is <strong>static</strong> typing - the compiler enforces correct usage.</p>
<p>The type of your variable is not really that important (this has been said before). It should be relatively clear from the context (its interactions with other variables and methods) and its name - don't expect <em>customerList</em> to contain an <code>int</code>...</p>
<p>I am still waiting to see what my boss thinks of this matter - I got a blanket "go ahead" to use any new constructs in 3.5, but what will we do about maintenance?</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41531#415315Answer by Keith for Use of var keyword in C#Keith2008-09-03T12:13:33Z2008-09-07T17:54:02Z<p>In your comparison between <code>IEnumerable<int></code> and <code>IEnumerable<double></code> you don't need to worry - if you pass the wrong type your code won't compile anyway.</p>
<p>There's no concern about type-safety, as <code>var</code> is <strong>not</strong> dynamic. It's just compiler magic and any type unsafe calls you make will get caught. </p>
<p><code>Var</code> is absolutely needed for Linq:</p>
<pre><code>var anonEnumeration =
from post in AllPosts()
where post.Date > oldDate
let author = GetAuthor( post.AuthorId )
select new {
PostName = post.Name,
post.Date,
AuthorName = author.Name
};
</code></pre>
<p>Now look at <em>anonEnumeration</em> in intellisense and it will appear something like <code>IEnumerable<'a></code></p>
<pre><code>foreach( var item in anonEnumeration )
{
//VS knows the type
item.PostName; //you'll get intellisense here
//you still have type safety
item.ItemId; //will throw a compiler exception
}
</code></pre>
<p>The C# compiler is pretty clever - anon types generated separately will have the same generated type if their properties match.</p>
<p>Outside of that, as long as you have intellisense it makes good sense to use <code>var</code> anywhere the context is clear.</p>
<pre><code>//less typing, this is good
var myList = new List<UnreasonablyLongClassName>();
//also good - I can't be mistaken on type
var anotherList = GetAllOfSomeItem();
//but not here - probably best to leave single value types declared
var decimalNum = 123.456m;
</code></pre>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41532#415322Answer by robi for Use of var keyword in C#robi2008-09-03T12:13:43Z2008-09-03T12:13:43Z<p>I split var all over the places, the only questionable places for me are internal short types, e.g. I prefer <code>int i = 3;</code> over <code>var i = 3;</code></p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41634#416340Answer by kronoz for Use of var keyword in C#kronoz2008-09-03T13:16:09Z2008-09-03T13:16:09Z<p>@<a href="#41531" rel="nofollow">Keith</a> - </p>
<blockquote>
<p>In your comparison between
IEnumerable and
IEnumerable you don't need to
worry - if you pass the wrong type
your code won't compile anyway.</p>
</blockquote>
<p>That isn't quite true - if a method is overloaded to both IEnumerable<int> and IEnumerable<double> then it may silently pass the unexpected inferred type (due to some other change in the program) to the wrong overload hence causing incorrect behaviour.</p>
<p>I suppose the question is how likely it is that this sort of situation will come up!</p>
<p>I guess part of the problem is how much confusion var adds to a given declaration - if it's not clear what type something is (despite being strongly typed and the compiler understanding entirely what type it is) someone might gloss over a type safety error, or at least take longer to understand a piece of code.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41689#416890Answer by Giovanni Galbo for Use of var keyword in C#Giovanni Galbo2008-09-03T13:43:31Z2008-09-03T13:43:31Z<p>I use var in the following situations:</p>
<ol>
<li>When I have to (result is anonymous)</li>
<li><p>When the type is on the same line as the code, e.g.</p>
<p>var emp = new Employee();</p></li>
</ol>
<p>Its obvious we want an Employee (because we're creating a new Employee object), so how is </p>
<pre><code>Employee emp = new Employee() any more obvious?
</code></pre>
<p>I do NOT use var when the type cannot be inferred, e.g.</p>
<pre><code>var emp = GetEmployee();
</code></pre>
<p>Because the return type is not immediately obvious (is at an Employee, an IEmployee, something that has nothing to do with an Employee object at all, etc?).</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41695#416952Answer by Pat for Use of var keyword in C#Pat2008-09-03T13:46:04Z2008-09-03T13:46:04Z<p>After just converting over to the 3.0 and 3.5 frameworks I learned about this keyword and decided to give it a whirl. Before committing any code I had the realization that it seemed backwards, as in going back toward an ASP syntax. So I decided to poke the higher ups to see what they thought. </p>
<p>They said go ahead so I use it.</p>
<p>With that said I avoid using it where the type requires some investigation, like this:</p>
<p>var a = company.GetRecords();</p>
<p>Now it could just be a personal thing but I immediately cant look at that and determine if its a collection of Record objects or a string array representing the name of records. Whichever the case I believe explicit declaration is useful in such an instance.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41981#419810Answer by Kevin Berridge for Use of var keyword in C#Kevin Berridge2008-09-03T15:54:37Z2008-09-03T15:54:37Z<p>I have to agree with <a href="http://beta.stackoverflow.com/questions/41479/use-of-var-keyword-in-c#41486" rel="nofollow">Matt Hamilton</a>.</p>
<p>Var can make your code much more readable and understandable when used with good variable names. But var can also make your code as impossible to read and understand as Perl when used badly. </p>
<p>A list of good and bad uses of var isn't really going to help much either. This is a case for common sense. The larger question is one of readability vs. write-ability. Lots of devs don't care if their code is readable. They just don't want to type as much. Personally I'm a read > write guy.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/43621#436211Answer by Keith for Use of var keyword in C#Keith2008-09-04T12:23:15Z2008-09-04T12:23:15Z<p>kronoz - <a href="#41634" rel="nofollow">in that case</a> (overloads for both) would it matter? If you have two overloads that took the different types you would essentially be saying that either can be passed and do the same thing.</p>
<p>You shouldn't have two overloads that do completely different actions depending on the types passed.</p>
<p>While you might get some confusion in that instance it would still be entirely type safe, you'd just have someone calling the wrong method.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/51785#517850Answer by Tundey for Use of var keyword in C#Tundey2008-09-09T12:55:29Z2008-09-09T12:55:29Z<p>I don't understand why people start debates like this. It really serves no purpose than to start flame wars at then end of which nothing is gained. Now if the C# team was trying to phase out one style in favor of the other, I can see the reason to argue over the merits of each style. But since both are going to remain in the language, why not use the one <em>you</em> prefer and let everybody do the same. It's like the use of everybody's favorite ternary operator: some like it and some don't. At the end of the day, it makes no difference to the compiler.</p>
<p>This is like arguing with your siblings over which is your favorite parent: it doesn't matter unless they are divorcing!</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/55642#556422Answer by nedruod for Use of var keyword in C#nedruod2008-09-11T01:31:02Z2008-09-11T01:31:02Z<p>Static typing is about contracts, not source code. The idea there is a need to have the static information on a single line of what "should" be a small method. Common guidelines recommend rarely exceeding 25 lines per method.</p>
<p>If a method is large enough that you can't keep track of a single variable within that method, you are doing something else wrong that would make any criticism of var pale in comparison.</p>
<p>Actually, one of the great arguments for var is that it can make refactoring simpler because you no longer have to worry that you made your declaration overly restrictive (i.e. you used List<> when you should have used IList<>, or IEnumerable<>). You still want to think about the new methods signature, but at least you won't have to go back and change your declarations to match.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/67083#670830Answer by AlanR for Use of var keyword in C#AlanR2008-09-15T21:20:47Z2008-09-15T21:20:47Z<p>I find that using the var keyword actually makes the code more readable because you just get used to skipping the 'var' keyword. You don't need to keep scrolling right to figure out what the code is doing when you really don't care about what the specific type is. If I really need to know what type 'item' is below, I just hover my mouse over it and Visual Studio will tell me. In other words, I would much rather read</p>
<pre><code>foreach( var item in list ) { DoWork( item ); }
</code></pre>
<p>over and over than</p>
<pre><code>foreach( KeyValuePair<string, double> entry in list ) { DoWork( Item ); }
</code></pre>
<p>when I am trying to digest the code. I think it boils down to personal preference to some extent. I would rely on common sense on this one -- save enforcing standards for the important stuff (security, database use, logging, etc.)</p>
<p>-Alan.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/78833#788336Answer by Dexter for Use of var keyword in C#Dexter2008-09-17T01:08:18Z2008-09-17T01:08:18Z<p>We've adopted the ethos "Code for people, not machines", based on the assumption that you spend multiple times longer in maintenance mode than on new development.</p>
<p>For me, that rules out the argument that the compiler "knows" what type the variable is - sure, you can't write invalid code the first time because the compiler stops your code from compiling, but when the next developer is reading the code in 6 months time they need to be able to deduce what the variable is doing correctly or incorrectly and quickly identify the cause of issues.</p>
<p>Thus,</p>
<pre><code>var something = SomeMethod();
</code></pre>
<p>is outlawed by our coding standards, but the following is encouraged in our team because it increases readability:</p>
<pre><code>var list = new KeyValuePair<string, double>;
FillList( list );
foreach( var item in list ) {
DoWork( item );
}
</code></pre>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/96490#964908Answer by Dustman for Use of var keyword in C#Dustman2008-09-18T20:22:53Z2008-09-18T20:22:53Z<p>From Eric Lippert, a Senior Software Design Engineer on the C# team:</p>
<p>Why was the <code>var</code> keyword introduced?</p>
<blockquote>
<p>There are two reasons, one which
exists today, one which will crop up
in 3.0.</p>
<p>The first reason is that this code is
incredibly ugly because of all the
redundancy:</p>
<p><code>Dictionary<string, List<int>> mylists = new Dictionary<string, List<int>>();</code></p>
<p>And that's a simple example – I've
written worse. Any time you're forced
to type exactly the same thing twice,
that's a redundancy that we can
remove. Much nicer to write</p>
<p><code>var mylists = new Dictionary<string,List<int>>();</code></p>
<p>and let the compiler figure out what
the type is based on the assignment.</p>
<p>Second, C# 3.0 introduces anonymous
types. Since anonymous types by
definition have no names, you <strong>need</strong> to
be able to infer the type of the
variable from the initializing
expression if its type is anonymous.</p>
</blockquote>
<p>Emphasis mine. The whole <a href="http://blogs.msdn.com/ericlippert/archive/2005/09/27/c-3-0-is-still-statically-typed-honest.aspx" rel="nofollow">article</a> (and the ensuing <a href="http://blogs.msdn.com/ericlippert/archive/tags/Type+Inference/default.aspx" rel="nofollow">series</a>) is pretty good.</p>
<p>This is what <code>var</code> is for. Other uses probably will not work so well. Any comparison to JScript, VBScript, or dynamic typing is total bunk. Note again, <code>var</code> is <strong>required</strong> in order to have certain other features work in .NET.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/100255#1002550Answer by Ilya Ryzhenkov for Use of var keyword in C#Ilya Ryzhenkov2008-09-19T07:30:53Z2008-09-19T07:30:53Z<p>I've <a href="http://resharper.blogspot.com/2008/03/varification-using-implicitly-typed.html" rel="nofollow">blogged</a> about it before, and there is some discussion in comments too.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/105485#1054853Answer by Kyralessa for Use of var keyword in C#Kyralessa2008-09-19T20:45:41Z2008-09-19T20:45:41Z<p>To me, the antipathy towards <code>var</code> illustrates why bilingualism in .NET is important. To those C# programmers who have also done VB .NET, the advantages of <code>var</code> are intuitively obvious. The standard C# declaration of:</p>
<pre><code>List<string> whatever = new List<string>();
</code></pre>
<p>is the equivalent, in VB .NET, of typing this:</p>
<pre><code>Dim whatever As List(Of String) = New List(Of String)
</code></pre>
<p>Nobody does that in VB .NET, though. It would be silly to, because since the first version of .NET you've been able to do this...</p>
<pre><code>Dim whatever As New List(Of String)
</code></pre>
<p>...which creates the variable and initializes it all in one reasonably compact line. Ah, but what if you want an <code>IList<string></code>, not a <code>List<string></code>? Well, in VB .NET that means you have to do this:</p>
<pre><code>Dim whatever As IList(Of String) = New List(Of String)
</code></pre>
<p>Just like you'd have to do in C#, and obviously couldn't use <code>var</code> for:</p>
<pre><code>IList<string> whatever = new List<string>();
</code></pre>
<p>If you <em>need</em> the type to be something different, it can be. But one of the basic principles of good programming is reducing redundancy, and that's exactly what var does.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/133732#1337323Answer by DotNetGuy for Use of var keyword in C#DotNetGuy2008-09-25T14:34:59Z2008-09-25T14:34:59Z<p>Use it for anonymous types - that's what it's there for. Anything else is a use too far. Like many people who grew up on C, I'm used to looking at the left of the declaration for the type. I don't look at the right side unless I have to. Using <code>var</code> for any old declaration makes me do that all the time, which I personally find uncomfortable.</p>
<p>Those saying 'it doesn't matter, use what you're happy with' are not seeing the whole picture. Everyone will pick up other people's code at one point or another and have to deal with whatever decisions they made at the time they wrote it. It's bad enough having to deal with radically different naming conventions, or - the classic gripe - bracing styles, without adding the whole '<code>var</code> or not' thing into the mix. The worst case will be where one programmer didn't use <code>var</code> and then along comes a maintainer who loves it, and extends the code using it. So now you have an unholy mess. </p>
<p>Standards are a good thing precisely because they mean you're that much more likely to be able to pick up random code and be able to grok it quickly. The more things that are different, the harder that gets. And moving to the 'var everywhere' style makes a <strong>big</strong> difference.</p>
<p>I don't mind dynamic typing, and I don't mind implict typing - in languages that are designed for them. I quite like Python. But C# was designed as a statically explicitly-typed language and that's how it should stay. Breaking the rules for anonymous types was bad enough; letting people take that still further and break the idioms of the language even more is something I'm not happy with. Now that the genie is out of the bottle, it'll never go back in. C# will become balkanised into camps. Not good.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/213704#2137040Answer by TimothyP for Use of var keyword in C#TimothyP2008-10-17T20:20:01Z2008-10-17T20:25:16Z<p>I think people do not understand the var keyword.
They confuse it with the Visual Basic / JavaScript keyword,
which is a different beast all toghether.</p>
<p>Many people think the var keyword implies
weak typing (or dynamic typing), while in fact c# is and remains strongly typed.</p>
<p>If you consider this in javascript:</p>
<pre><code>var something = 5;
</code></pre>
<p>you are allowed to:</p>
<pre><code>something = "hello";
</code></pre>
<p>In the case of c#, the compiler would infer the type from the first statement,
causing something to be of type "int", so the second statement would result
in an exception.</p>
<p>People simply need to understand that using the var keyword does not imply
dynamic typing and then decide how far they want to take the use of the var keyword,
knowing it will have absolutely no difference as to what will be compiled.</p>
<p>Sure the var keyword was introduced to support anonymous types,
but if you look at this:</p>
<pre><code>LedDeviceController controller = new LedDeviceController("172.17.0.1");
</code></pre>
<p>It's very very verbose, and I'm sure this is just as readable, if not more:</p>
<pre><code>var controller = new LedDeviceController("172.17.0.1");
</code></pre>
<p>The result is exactly the same, so yes I use it throughout my code</p>
<p>UPDATE:</p>
<p>Maybe, just maybe... they should have used another keyword,
then we would not be having this discussion... perhaps the "infered" keyword instead of "var"</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/321277#3212770Answer by Richard E for Use of var keyword in C#Richard E2008-11-26T16:19:16Z2008-11-26T16:19:16Z<p><code>var</code> is essential for anonymous types (as pointed out in one of the previous responses to this question).</p>
<p>I would categorise all other discussion of its pros and cons as "religious war". By that I mean that a comparison and discussion of the relative merits of...</p>
<pre><code>var i = 5;
int j = 5;
SomeType someType = new SomeType();
var someType = new SomeType();
</code></pre>
<p>...is entirely subjective.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb384061.aspx" rel="nofollow">Implicit typing</a> means that there is no runtime penalty for any variable being declared using the <code>var</code> keyword, so it comes down to being a debate about what makes the developers happy. </p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/391590#3915902Answer by maldevane for Use of var keyword in C#maldevane2008-12-24T14:51:13Z2008-12-24T15:00:19Z<p>Stolen from the <a href="http://www.codinghorror.com/blog/archives/001136.html" rel="nofollow">post on this issue at CodingHorror</a>:</p>
<p><hr /></p>
<p><em>Unfortunately, you and everyone else pretty much got it wrong. While I agree with you that redundancy is not a good thing, the better way to solve this issue would have been to do something like the following:</p>
<p>MyObject m = new();</p>
<p>Or if you are passing parameters:</p>
<p>Person p = new("FirstName", "LastName);</p>
<p>Where in the creation of a new object, the compiler infers the type from the left-hand side, and not the right. This has other advantages over "var", in that it could be used in field declarations as well (there are also some other areas that it could be useful as well, but I won't get into it here).</p>
<p>In the end, it just wasn't intended to reduce redundancy. Don't get me wrong, "var" is VERY important in C# for anonymous types/projections, but the use here is just WAY off (and I've been saying this for a long, long time) as you obfuscate the type that is being used. Having to type it twice is too often, but declaring it zero times is too few.</p>
<p>Nicholas Paldino .NET/C# MVP on June 20, 2008 08:00 AM</em></p>
<p><hr /></p>
<p>I guess if your main concern is to have to type less -- then there isn't any argument that's going to sway you from using it.</p>
<p>If you are only going to <strong>ever</strong> be the person who looks at your code, then who cares? Otherwise, in a case like this:</p>
<pre><code>var people = Managers.People
</code></pre>
<p>it's fine, but in a case like this:</p>
<pre><code>var fc = Factory.Run();
</code></pre>
<p>it short circuits any immediate type deductions my brain could begin forming from the 'English' of the code.</p>
<p>Otherwise, just use your best judgment and programming 'courtesy' towards others who might have to work on your project.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/488436#4884361Answer by SealedSun for Use of var keyword in C#SealedSun2009-01-28T16:55:12Z2009-01-28T16:55:12Z<p>I use <code>var</code> whenever possible. </p>
<p>The actual type of the local variable <em>shouldn't matter</em> if your code is well written (i.e., good variable names, comments, clear structure etc.)</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/498706#4987060Answer by Chris S for Use of var keyword in C#Chris S2009-01-31T11:54:34Z2009-01-31T11:54:34Z<p>I don't use var as it goes against the roots of C# - C/C++/Java. Even though it's a compiler trick it makes the language feel like it's less strongly typed. Maybe 20+ years of C have engrained it all into our (the anti-var people's) heads that we should have the type on both the left and right side of the equals.</p>
<p>Having said that I can see its merits for long generic collection definitions and long class names like the codinghorror.com example, but elsewhere such as string/int/bool I really can't see the point. Particularly</p>
<pre><code>foreach (var s in stringArray)
{
}
</code></pre>
<p>a saving of 3 characters!</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/537411#5374110Answer by pbartek for Use of var keyword in C#pbartek2009-02-11T15:49:39Z2009-02-11T15:49:39Z<p>VS2008 w/resharper 4.1 has correct typing in the tooltip when you hover over "var" so I think it should be able to find this when you look for all usages of a class.</p>
<p>Haven't yet tested that it does that yet though.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/792765#7927650Answer by Benjol for Use of var keyword in C#Benjol2009-04-27T09:09:18Z2009-04-27T09:09:18Z<p>Arriving a bit late at this discussion, but I'd just like to add a thought.</p>
<p>To all those who are against type inference (because that's what we're really talking about here), what about lambda expressions? If you insist on always declaring types explicitly (except for anonymous types), what do you do with lambdas? How does the "Don't make me use mouseover" argument apply to var but not to lambdas?</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/792792#7927920Answer by CraigTP for Use of var keyword in C#CraigTP2009-04-27T09:18:21Z2009-04-27T09:19:40Z<p>This question seems to have been asked and discussed before, here:</p>
<p><a href="http://stackoverflow.com/questions/633474/c-do-you-use-var">C# - Do you use “var”?</a></p>
<p>At the risk of repeating myself, I'll link to my answer in that linked question, which, given the upvotes, seems to be a fairly general consensus for quite a few people (but also sparked some interesting comments!):</p>
<p><a href="http://stackoverflow.com/questions/633474/c-do-you-use-var/633768#633768">My Answer</a></p>
<p><strong>EDIT:</strong> Well, seems this particular question actually pre-dates the one I linked to [<em>smacks forehead</em>], however, I'll leave this here since the two questions are obviously very closely related, the discussions on both threads will be of interest to readers of either thread.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971916#9719160Answer by Colin for Use of var keyword in C#Colin2009-06-09T19:08:19Z2009-06-09T19:08:19Z<p>Depends, somehow it makes the code look 'cleaner', but agree it makes it more unreadable to...</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971919#9719193Answer by mquander for Use of var keyword in C#mquander2009-06-09T19:08:54Z2009-06-09T19:08:54Z<p>I guess it depends on your perspective. I personally have never had any difficulty understanding a piece of code because of <code>var</code> "misuse", and my coworkers and I use it quite a lot all over. (I agree that Intellisense is a huge aid in this regard.) I welcome it as a way to remove repetitive cruft.</p>
<p>After all, if statements like</p>
<pre><code>var index = 5; // this is supposed to be bad
var firstEligibleObject = FetchSomething(); // oh no what type is it
// i am going to die if i don't know
</code></pre>
<p>were really that impossible to deal with, nobody would use dynamically typed languages.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971930#9719300Answer by SLaks for Use of var keyword in C#SLaks2009-06-09T19:10:03Z2009-06-09T19:10:03Z<p>It can make code simpler and shorter, especially with complicated generic types and delegates.</p>
<p>Also, it makes variable types easier to change.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971934#9719345Answer by Colin Desmond for Use of var keyword in C#Colin Desmond2009-06-09T19:10:37Z2009-06-09T19:10:37Z<p>Given how powerful Intellisense is now, I am not sure var is any harder to read than having member variables in a class, or local variables in a method which are defined off the visible screen area. </p>
<p>If you have a line of code such as </p>
<pre><code>IDictionary<BigClassName, SomeOtherBigClassName> nameDictionary = new Dictionary<BigClassName, SomeOtherBigClassName>();
</code></pre>
<p>Is is much easier/harder to read than</p>
<pre><code>var nameDictionary = Dictionary<BigClassName, SomeOtherBigClassName>();
</code></pre>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971943#9719430Answer by Jeff Yates for Use of var keyword in C#Jeff Yates2009-06-09T19:11:36Z2009-06-09T19:11:36Z<p><code>var</code> is great when you don't want to repeat yourself. For example, I needed a data structure yesterday that was similar to this. Which representation do you prefer?</p>
<pre><code>Dictionary<string, Dictionary<string, List<MyNewType>>> collection = new Dictionary<string, Dictionary<string, List<MyNewType>>>();
</code></pre>
<p>or</p>
<pre><code>var collection = new Dictionary<string, Dictionary<string, List<MyNewType>>>();
</code></pre>
<p>Note that there is little ambiguity introduced by using <code>var</code> in this example. However, there are times when it wouldn't be such a good idea. For example, if I used <code>var</code> as in the following,</p>
<pre><code>var value= 5;
</code></pre>
<p>when I could just write the real type and remove any ambiguity in how <code>5</code> should be represented.</p>
<pre><code>double value = 5;
</code></pre>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971949#9719492Answer by Richard for Use of var keyword in C#Richard2009-06-09T19:12:18Z2009-06-09T19:18:49Z<p>It can certainly make things simpler, from code I wrote yesterday:</p>
<pre><code>var content = new Queue<Pair<Regex, Func<string, bool>>>();
...
foreach (var entry in content) { ... }
</code></pre>
<p>This would have be extremely verbose without <code>var</code>.</p>
<p>Addendum: A little time spent with a language with <em>real</em> type inference (e.g. F#) will show just how good compilers are at getting the type of expressions right. It certainly has meant I tend to use <code>var</code> as much as I can, and using an explicit type now indicates that the variable is not of the initialising expression's type.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971967#9719673Answer by BFree for Use of var keyword in C#BFree2009-06-09T19:15:54Z2009-06-09T19:15:54Z<p>Many time during testing, I find myself having code like this:</p>
<pre><code>var something = myObject.SomeProperty.SomeOtherThing.CallMethod();
Console.WriteLine(something);
</code></pre>
<p>Now, sometimes, I'll want to see what the SomeOtherThing itself contains, SomeOtherThing is not the same type that CallMethod() returns. Since I'm using var though, I just change this:</p>
<pre><code>var something = myObject.SomeProperty.SomeOtherThing.CallMethod();
</code></pre>
<p>to this:</p>
<pre><code>var something = myObject.SomeProperty.SomeOtherThing;
</code></pre>
<p>Without var, I'd have to keep changing the declared type on the left hand side as well. I know it's minor, but it's extremely convenient.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971997#9719970Answer by Serapth for Use of var keyword in C#Serapth2009-06-09T19:20:33Z2009-06-09T19:20:33Z<p>I don't think var per say is a terrible language feature, as I use it daily with code like what Jeff Yates described. Actually, almost everytime I use var is because generics can make for some extremely wordy code. I live verbose code but generics take it a step too far.</p>
<p>That said, I (obviously... ) think var is ripe for abuse. If code gets to 20+ lines in a method with vars littered through out, you will quickly make maintenance a nightmare. Additionally, var in a tutorial is incredibly counter intuitive and generally is a giant no-no in my books.</p>
<p>On the flipside, var is an "easy" feature that new programmers are going to latch onto and love. Then, within a few minutes/hours/days hit a massive roadblock when they start hitting the limits. "Why can't I return var from functions?" That kind of question. Also, adding a pseudo dynamic type to a strongly typed language is something that can easily trip up a new developer. In the long run, I think the var keyword will actually make c# harder to learn for new programmers.</p>
<p>That said, as an experienced programmer I do use var, mostly when dealing with generics ( and obviously anonymous types ). I do hold by my quote, I do believe var will be one of the worst abused c# features.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/972071#9720710Answer by Euro Micelli for Use of var keyword in C#Euro Micelli2009-06-09T19:33:54Z2009-06-09T19:33:54Z<p>There is bound to be disagreement near the edge cases, but I can tell you my personal guidelines.</p>
<p>I look at these the criteria when I decide to use <code>var</code>:</p>
<ul>
<li>The type of the variable is <em>obvious</em> [to a human] from the context</li>
<li>The exact type of the variable is <em>not particularly relevant</em> [to a human]<br />
<em>[e.g. you can figure out what the algorithm is doing without caring about what kind of container you are using]</em></li>
<li>The type name is very long and interrupts the readability of the code (<em>hint: usually a generic</em>)</li>
</ul>
<p>Conversely, these situations would push me to not use <code>var</code>:</p>
<ul>
<li>The type name is relatively short and easy to read (<em>hint: usually not a generic</em>)</li>
<li>The type is <em>not obvious</em> from the initializer's name</li>
<li>The exact type is very important to understand the code/algorithm</li>
<li>On class hierarchies, when a human can't easily tell which level of the hierarchy is being used</li>
</ul>
<p>Finally, I would never use <code>var</code> for native value types or corresponding <code>nullable<></code> types (<code>int</code>, <code>decimal</code>, <code>string</code>, <code>decimal?</code>, ...). There is an implicit assumption that if you use <code>var</code>, there must be "a reason".</p>
<p>These are all guidelines. You should also think also about the experience and skills of your coworkers, the complexity of the algorithm, the longevity/scope of the variable, etc, etc.</p>
<p>Most of the time, there is no perfect right answer. Or, it doesn't really matter.</p>
<p><em>[Edit: removed a duplicate bullet]</em></p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1031291#10312910Answer by Jamie for Use of var keyword in C#Jamie2009-06-23T08:19:04Z2009-06-23T08:19:04Z<p>From <a href="http://rads.stackoverflow.com/amzn/click/0321564162" rel="nofollow">Essential LINQ</a>:</p>
<p>It is best not to explicitly declare the type of a range variable unless absolutely necessary. For instance, the following code compiles cleanly, but the type could have been inferred by the compiler without a formal declaration:</p>
<pre><code>List<string> list = new List<string> { "LINQ", "query", "adventure" };
var query = from string word in list
where word.Contains("r")
orderby word ascending
select word;
</code></pre>
<p>Explicitly declaring the type of a range variable forces a behind-the-scenes call to the LINQ Cast operator. This call may have unintended consequences and may hurt performance. If you encounter performance problems with a LINQ query, a cast like the one shown here is one possible place to begin looking for the culprit. (The one exception to this rule is when you are working with a nongeneric Enumerable, in which case you should use the cast.)</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298234#12982344Answer by Ignas R for Use of var keyword in C#Ignas R2009-08-19T07:09:08Z2009-08-19T07:09:08Z<p>None, except that you don't have to write the type name twice. <a href="http://msdn.microsoft.com/en-us/library/bb383973.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb383973.aspx</a></p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298236#12982362Answer by Rune FS for Use of var keyword in C#Rune FS2009-08-19T07:09:27Z2009-08-19T07:09:27Z<p>It's purely a convinience. The compiler will inferre the type (based on the type of the expression on the right hand side)</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298237#12982374Answer by ShdNx for Use of var keyword in C#ShdNx2009-08-19T07:09:32Z2009-08-19T07:09:32Z<p>In most cases, it's just simpler to type it - imagine</p>
<pre><code>var sb = new StringBuilder();
</code></pre>
<p>instead of:</p>
<pre><code>StringBuilder sb = new StringBuilder();
</code></pre>
<p>Sometimes it's required, for example: anonymous types, like.</p>
<pre><code>var stuff = new { Name = "Me", Age = 20 };
</code></pre>
<p>I personally like using it, in spite of the fact that it makes the code less readable and maintainable.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298256#12982560Answer by GONeale for Use of var keyword in C#GONeale2009-08-19T07:14:33Z2009-08-19T07:14:33Z<p>You don't have to write out the type name and no this is not less performant as the type is resolved at compile time.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298268#129826810Answer by Marc Gravell for Use of var keyword in C#Marc Gravell2009-08-19T07:17:12Z2009-08-19T08:52:11Z<p>The most likely time you'll need this is for anonymous types (where it is 100% required); but it also avoids repetition for the trivial cases, and IMO makes the line clearer. I don't need to see the type twice for a simple initialization.</p>
<p>For example:</p>
<pre><code>Dictionary<string, List<SomeComplexType<int>>> data = new Dictionary<string, List<SomeComplexType<int>>>();
</code></pre>
<p>(please don't edit the hscroll in the above - it kinda proves the point!!!)</p>
<p>vs:</p>
<pre><code>var data = new Dictionary<string, List<SomeComplexType<int>>>();
</code></pre>
<p>There are, however, occasions when this is misleading, and can potentially cause bugs. Be careful using <code>var</code> if the original variable and initialized type weren't identical. For example:</p>
<pre><code>static void DoSomething(IFoo foo) {Console.WriteLine("working happily") }
static void DoSomething(Foo foo) {Console.WriteLine("formatting hard disk...");}
// this working code...
IFoo oldCode = new Foo();
DoSomething(oldCode);
// ...is **very** different to this code
var newCode = new Foo();
DoSomething(newCode);
</code></pre>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298283#12982833Answer by MartinStettner for Use of var keyword in C#MartinStettner2009-08-19T07:21:36Z2009-08-19T07:21:36Z<p>Using <code>var</code> instead of explicit type makes refactorings much easier (therefore I must contradict the previous posters who meant it made no difference or it was purely "syntactic sugar").</p>
<p>You can change the return type of your methods without changing every file where this method is called. Imagine</p>
<pre><code>...
List<MyClass> SomeMethod() { ... }
...
</code></pre>
<p>which is used like</p>
<pre><code>...
IList<MyClass> list = obj.SomeMethod();
foreach (MyClass c in list)
System.Console.WriteLine(c.ToString());
...
</code></pre>
<p>If you wanted to refactor <code>SomeMethod()</code> to return an <code>IEnumerable<MySecondClass></code>, you would have to change the variable declaration (also inside the <code>foreach</code>) in every place you used the method.</p>
<p>If you write</p>
<pre><code>...
var list = obj.SomeMethod();
foreach (var element in list)
System.Console.WriteLine(element.ToString());
...
</code></pre>
<p>instead, you don't have to change it.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298297#12982971Answer by Ira Baxter for Use of var keyword in C#Ira Baxter2009-08-19T07:25:07Z2009-08-19T15:22:05Z<p>You can let the compiler (and the fellow who maintains the code next) infer the type from the right hand side of the initializer assignment. If this inference is possible, the compiler can do it so it saves some typing on your part. </p>
<p>If the inference is easy for that poor fellow, then you haven't hurt anything. If the inference is hard, you've made the code harder to maintain and so as a general rule
I wouldn't do it.</p>
<p>Lastly, if you intended the type to be something particular, and your initializer expression actually has a different type, using var means it will be harder for you to find the induced bug. By explicitly telling the compiler what you intend the type to be, when the type isn't that, you would get an immediate diagnostic. By sluffing on the type declaration and using "var", you won't get an error on the initialization; instead, you'll get a type error in some expression that uses the identifier assigned by the var expression, and it will be harder to understand why.</p>
<p>So the moral is, use var sparingly; you generally aren't doing yourself or your downstream fellow maintainer a lot of good. And hope he reasons the same way, so you aren't stuck guessing his intentions because <em>he</em> thought using var was easy. Optimizing on how much you type is a mistake when coding a system with a long life.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298312#12983122Answer by Jason for Use of var keyword in C#Jason2009-08-19T07:30:40Z2009-08-19T07:30:40Z<p>Improved readability (and a necessity for anonymous types). Compare</p>
<pre><code>var dict = new Dictionary<string, IEnumerable<MyClass<double>>>();
</code></pre>
<p>to</p>
<pre><code>Dictionary<string, IEnumerable<MyClass<double>>> dict = new Dictionary<string, IEnumerable<MyClass<double>>>();
</code></pre>
<p>There are some tricky edge cases where semantics can differ, but for the most part prefer <code>var</code> for complex types (i.e., I still prefer <code>string s = "hello"</code> versus <code>var s = "hello"</code>).</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298608#12986080Answer by Arnis L. for Use of var keyword in C#Arnis L.2009-08-19T08:57:34Z2009-08-19T08:57:34Z<p><a href="http://devlicio.us/blogs/derik%5Fwhittaker/archive/2009/08/14/wow-the-hatred-for-var-lives-on.aspx" rel="nofollow">Here</a> is a quite nice article why it is a good idea to use var.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298706#12987060Answer by saret for Use of var keyword in C#saret2009-08-19T09:17:35Z2009-08-19T09:17:35Z<p>Sometimes the compiler can also infer what is required "better" than the developer - at least a developer who does not understand what the api he's using requires.</p>
<p>For example - when using linq:</p>
<p>Example 1</p>
<pre><code>Func<Person, bool> predicate = (i) => i.Id < 10;
IEnumerable<Person> result = table.Where(predicate);
</code></pre>
<p>Example 2</p>
<pre><code>var predicate = (Person i) => i.Id < 10;
var result = table.Where(predicate);
</code></pre>
<p>In the above code - assuming one is using Linq to Nhibernate or Linq to SQL, Example 1 will
bring the entire resultset for Person objects back and then do filter on the client end.
Example 2 however will do the query on the server (such as on Sql Server with SQL) as the compiler is smart enough to work out that the Where function should take a Expression> rather than a Func. </p>
<p>The result in Example 1 will also not be further queryable on the server as an IEnumerable is returned, while in Example 2 the compiler can work out if the result should rather be a IQueryable instead of IEnumerable</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1367659#13676591Answer by krystan honour for Use of var keyword in C#krystan honour2009-09-02T13:20:38Z2009-09-02T13:20:38Z<p>I used to think that the var keyword was a great invention but I put a a limit on it this was</p>
<ul>
<li>Only use var where it is obvious what the type is immediately (no scrolling or looking at return types)</li>
</ul>
<p>I came to realise this then gave me no benefit whatsoever and removed all var keywords from my code (unless they were specifically required), for now I think that they make the code less readable, especially to others reading your code.</p>
<p>It hides intent and in at least one instance lead to a runtime bug in some code because of assumption of type.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1724070#17240700Answer by David_001 for Use of var keyword in C#David_0012009-11-12T17:44:55Z2009-11-12T17:44:55Z<p>From the discussion on this topic, the outcome appears to be:</p>
<p>Good: <code>var customers = new List<Customer>();</code></p>
<p>Controversial: <code>var customers = dataAccess.GetCustomers();</code></p>
<p>Ignoring the misguided opinion that "var" magically helps with refactoring, the biggest issue for me is people's insistence that they don't care what the return type is, "so long as they can enumerate the collection". </p>
<p>Consider: </p>
<pre><code>IList<Customer> customers = dataAccess.GetCustomers();
var dummyCustomer = new Customer();
customers.Add(dummyCustomer);
</code></pre>
<p>Now consider:</p>
<pre><code>var customers = dataAccess.GetCustomers();
var dummyCustomer = new Customer();
customers.Add(dummyCustomer);
</code></pre>
<p>Now, go and refactor the data access class, so that GetCustomers returns <code>IEnumerable<Customer></code>, and see what happens...</p>
<p>The problem here is that in the first example you're making your expectations of the GetCustomers method explicit - you're saying that you expect it to return something that behaves like a list. In the second example, this expectation is implicit, and not immediately obvious from the code.</p>
<p>It's interesting (to me) that a lot of pro-var arguments say "i don't care what type it returns", but go on to say "i just need to iterate over it...". (so it needs to implement the IEnumerable interface, implying the type <em>does</em> matter).</p>