C# is quite nitpicky when it comes to variable scoping. How is it possible that it accepts the following code?
class Program
{
int x = 0;
void foo()
{
int x = 0;
x = 1;
Console.WriteLine(x);
}
}
If you ask me, that’s an obvious naming conflict. Still the compiler (Visual Studio 2010) accepts it. Why?
The rules for C# name hiding are quite complex. The language allows the case you mention, but disallows many similar cases. See
Simple names are not so simple, part one
for some information on this complicated subject.
To address your specific question: the compiler certainly could detect that conflict. In fact, it does detect that conflict:
The equivalent C++ program would be legal C++, because in C++ a local variable comes into scope at the point of its declaration. In C#, a local variable is in scope throughout its entire block, and using it before its declaration is illegal. If you try compiling this program you get:
See: the local declaration hides the field. The compiler knows it. So why in your case is it not an error to hide a field?
Let’s suppose for the sake of argument that it should be an error. Should this also be an error?
The field x is a member of D via inheritance from B. So this should also be an error, right?
Now suppose you have this program produced by Foo Corporation:
and this program produced by Bar Corporation:
That compiles. Now suppose Foo Corp updates their base class and ships a new version out to you:
You’re telling me that every derived class that contains a local variable named x should now fail to compile?
That would be horrid. We have to allow local variables to shadow members.
And if we’re going to allow locals to shadow members of base classes, it would seem awfully strange to not allow locals to shadow members of classes.