﻿<?xml version="1.0" encoding="utf-8"?>
<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.cs: The name `count' does not exist in the context of `ClassMain'
// Line: 6

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

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