﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0104</ErrorName>
  <Examples>
    <string>using Gdk;
using System.Drawing;

public class Plot {
	void M ()
	{
		Graphics g;
	}
	
	
	static void Main ()
	{
	}
}


namespace Gdk {
	public class Graphics {
	}
}

namespace System.Drawing {
	public class Graphics {
	}
}
</string>
    <string>// cs0104.cs: Ambiguous type reference
// Line: 16
namespace A {
	class X {
	}
}

namespace B {
	class X {
	}
}

namespace C {
	using A;
	using B;
	class D : X {

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