<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0103</ErrorName>
  <Examples>
    <string>// cs0103.cs: The name `y' does not exist in the context of `C'
// Line: 8

public class C
{
	public static void Main ()
	{
	    int x = y;
	    int y = 1;
	}
}</string>
    <string>// cs0103-3.cs: The name `y' does not exist in the context of `C'
// Line: 8

public class C
{
	public static void Main ()
	{
	    const int x = y;
	    const int y = 1;
	}
}
</string>
    <string>// cs0103-4.cs: The name `de' does not exist in the context of `global::'
// Line: 4

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

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

</string>
    <string>// cs0103.cs: The name `count' does not exist in the context of `ClassMain'
// Line: 6

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

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