<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0400</ErrorName>
  <Examples>
    <string>// CS0400: The type or namespace name `N' could not be found in the global namespace. Are you missing an assembly reference?
// Line: 8

class C
{
	public static void Main()
	{
		global::N n = null;
	}
}
</string>
  </Examples>
</ErrorDocumentation>