Why is it not possible to have implicitly-typed variables at a class level within C# for when these variables are immediately assigned?

ie:

public class TheClass
{
    private var aList = new List<string>();
}

Is it just something that hasn't been implemented or is there a conceptual/technical reason for why it hasn't been done?

link|improve this question

1  
possible duplicate of stackoverflow.com/questions/824739/… – Brian Rasmussen May 5 '10 at 8:20
That's called a field, not a member variable. – SLaks Dec 16 '10 at 14:18
I thought they meant the same thing, one is from Java and the other from C++. – David Neale Dec 16 '10 at 14:29
feedback

1 Answer

up vote 9 down vote accepted

Here's a blog post from Eric that explains the reasoning.

link|improve this answer
Ah that's a great blog - thanks – David Neale May 5 '10 at 8:28
feedback

Your Answer

 
or
required, but never shown

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