First off, your test for oddness is wrong.
The answer to your question is to deny the premise of your question. This has nothing whatsoever to do with alpha conversion.
Nor does it have anything to do with "lexical scoping", by which leppie seems to mean something different than my understanding of lexical scoping. C# is a lexically scoped language.
Now, I want to emphasize that it is illegal to declare two locals in C# where one hides the other. It is perfectly legal to hide in other scopes; a type parameter may hide an outer type parameter (though doing so is really, really dumb; do not do that.) A field may hide a base class field (though you should mark the hiding field as 'new', to emphasize that fact.) A local may hide a method. And so on.
But a local may not hide another local, because (1) doing so makes bug farms, and (2) it violates the more general rule about usage of simple names.
That rule about names is the interesting rule here. You would get a similar error if you did this:
class C
{
int n;
void M()
{
Console.WriteLine(n); // n means this.n
Func<double, double> f = n=>n; // n means the formal parameter
}
}
The error you are getting is because you are violating the rule of C# that a simple name must have a consistent meaning throughout the local scope in which it is first used.
Programs where 'n' means one thing on one line and something completely different on the next are confusing and bug-prone, and therefore illegal.
If you want to do that then the two meanings of 'n' have to be in non-overlapping scopes:
class C
{
int n;
void M()
{
{
Console.WriteLine(n); // n means this.n
}
Func<double, double> f = n=>n; // n means the formal parameter
}
}
That would be legal because now the two usages of n are in non-overlapping scopes.
The problem has nothing whatsoever to do with alpha conversion. C# does alpha conversion just fine when it needs to.
And it is because C# is lexically scoped that the compiler can determine that you are violating this rule. This is not evidence that C# lacks lexical scoping; it is evidence that it has lexical scoping.
For more thoughts on this rule, see my article on the subject:
http://blogs.msdn.com/b/ericlippert/archive/2009/11/02/simple-names-are-not-so-simple.aspx