|
Question Merged by Marc Gravell♦
|
||||
|
|
||||
|
Question Merged by Jeff Atwood♦
|
||||
|
|
||||
|
5 | added related question link | ||
|
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? For example I rather lazily used var in questionable circumstances, e.g.:-
More legitimate uses of var are as follows:-
Interestingly LINQ seems to be a bit of a grey area, e.g.:-
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. It's even worse when it comes to LINQ to objects, e.g.:-
This is no better than the equivilent foreach(var item in someList) { // ... } equivilent. 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. Edit - var does 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.
|
||||
|
Post Made Community Wiki by Community♦
|
||||
|
4 |
added subjective tag
|
||
|
3 | added 325 characters in body | ||
|
2 |
Added 3.5 tag, as this is version specific
|
||
|
1 |
|
||
