A local variable named 'variable' is already defined in this scope
The compiler detected declarations of two local variables with the same name.
The following sample generates CS0128:
namespace x { public class a { public static void Main() { char i; int i; // CS0128 } } }