<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0246</ErrorName>
  <Examples>
    <string>// cs0246.cs: The type or namespace name 'ErrorType' could not be found (are you missing a using directive or an assembly reference?)
// Line: 5

interface A {
        event ErrorType Test;
}</string>
    <string>// cs0246.cs: The type or namespace name 'ErrorType' could not be found (are you missing a using directive or an assembly reference?)
// Line: 5

interface A {
        ErrorType Method();
}</string>
    <string>// cs0246.cs: The type or namespace name 'ErrorType' could not be found (are you missing a using directive or an assembly reference?)
// Line: 4

public delegate ErrorType Delegate ();</string>
    <string>// cs0246.cs: The type or namespace name 'AAAA' could not be found (are you missing a using directive or an assembly reference?)
// Line: 7

using System;
[assembly:CLSCompliant (true)]

[AAAA(false)]
public sealed class Region
{
    public Region() {}
}
</string>
    <string>// cs0246-6.cs: The type or namespace name 'XmlDocument' could not be found
// Line: 7
// This is bug 55770

using System;
using System.Xml;
using Document = XmlDocument;

public class Test {
	public static void Main ()
	{
	}
}</string>
    <string>// CS0246: Cannot find type `Reflection.ConstructorInfo'
// Line: 7
using System;

class foo {
    static void Main(string[] args ) {    
        Reflection.ConstructorInfo ci;        
    }
} 
</string>
    <string>// cs0246.cs: can not find type `B'
// Line: 4
interface A : B {
}

class X {
	static void Main () {
	}
}
</string>
  </Examples>
</ErrorDocumentation>