<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0103</ErrorName>
  <Examples>
    <string>// CS0103: The name `i' does not exist in the current context
// Line: 9
// Compiler options: -r:CS0103-2-lib.dll

class A : C
{
	void Test ()
	{
		i = 0;
	}
}
</string>
    <string>// CS0103: The name `de' does not exist in the current context
// Line: 4

[assembly: System.Reflection.AssemblyCulture(de)]
public class Hello {
}
</string>
    <string>// CS0103: The name `i' does not exist in the current context
// Line: 6

class X {
	void Y () {
		for (; true; ++i) { break; }
	}
}

</string>
    <string>// CS0103: The name `count' does not exist in the current context
// Line: 6

class ClassMain {
        public static void Main () {
                count++;
        }
}

</string>
  </Examples>
</ErrorDocumentation>