<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0128</ErrorName>
  <Examples>
    <string>// CS0128: A local variable named `res' is already defined in this scope
// Line: 13

class C
{
	static void Foo (int arg)
	{
		switch (arg) {
			case 1:
				int res = 1;
				break;
			case 2:
				int res = 2;
				break;
		}
	}
}
</string>
    <string>// CS0128: A local variable named `x' is already defined in this scope
// Line: 8

class x {
	static int y ()
	{
		int x = 1;
		int x = 2;

		return x + x;
	}
}
</string>
  </Examples>
</ErrorDocumentation>