<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0234</ErrorName>
  <Examples>
    <string>// CS0234: The type or namespace name `Enum' does not exist in the namespace `A.B.System'. Are you missing an assembly reference?
// Line: 8

using System;
namespace A.B.System {
	public class Test { 
		public static void Main () {
			Console.WriteLine (typeof (System.Enum));
		} 
	} 
}
</string>
    <string>// CS0234: The type or namespace name `Linq' does not exist in the namespace `System'. Are you missing `System.Core' assembly reference?
// Line: 5
// Compiler options: -noconfig

using System.Linq;

class C
{
	public static void Main ()
	{
	}
}</string>
    <string>// CS0234: The type or namespace name `Type' does not exist in the namespace `MonoTests.System'. Are you missing an assembly reference?
// Line: 12

using System;

namespace MonoTests.System
{
	public class Test
	{
		public static void Main ()
		{
			Console.WriteLine (System.Type.GetType ("System.String"));
		}
	}
}


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