Why is C# does not support alpha-conversion?
int n = 3;
int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };
int oddNumbers = numbers.Count(n => n % 2 == 1);
Console.Out.WriteLine("N value = " + n);
Yield:
A local variable named 'n' cannot be declared in this scope because it would give a different meaning to 'n', which is already used in a 'parent or current' scope to denote something else
Is there any particulate reason that I am not aware of because it sound very silly?
This is not really alpha conversion.
The problem is that C# does not have proper lexical scoping, which would imply that variables could be shadowed in inner scopes.