I understand that implicitly-typed local variables must be initialized.

I know that result will be an IList so could I somehow say that var result will be an IList?

var result; //initialize to something 

if( x < 0)  
{  
    result = (from s in context.someEntity  
              where s.somecolumn = x  
              select new { c1 = s.c1,c2=s.c2}).ToList();  
}

if(x >= 0)  
{  
    result = (from s in context.someEntity  
              where s.someOtherColumn = x  
              select new { c1 = s.c1,c2=s.c2}).ToList();  
}

foreach(var y in result)  
{  
    //do something . UPDATE 1: Retrieve y.c1, y.c2

}  
link|improve this question

53% accept rate
feedback

4 Answers

No they can't be "var can only be used when a local variable is declared and initialized in the same statement; the variable cannot be initialized to null, or to a method group or an anonymous function."

Since you're not initializing to an interface, it won't work.

http://msdn.microsoft.com/en-us/library/bb384061.aspx

link|improve this answer
feedback

If you know you want it to be an IList, why not just declare it as an IList?

Using var for uninitialized variables is (IMO) pretty unreadable.

link|improve this answer
I typically agree with you, but I've seen some people use it so that if they change the type name (e.g. from Human to Person) they don't have to change the declaration. Although with most refactoring tools that's pointless – taylonr Apr 20 '11 at 11:43
feedback

Do this:

var result = default(IList);
link|improve this answer
feedback

You might be able to do something with a ternary operation:

var list = (x < 0) ? ... : ...

but really, that would be pretty painful to read. With your code as posted I think I'd just stick with

IList result;

for readability.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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