<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0540</ErrorName>
  <Examples>
    <string>// CS0540: `N.Nested.C.I.P': containing type does not implement interface `N.Nested.I'
// Line: 17

using System;

namespace N
{
	class Nested
	{
		public interface I
		{
			bool P { get; }
		}

		public class C
		{
			bool I.P
			{
				get { return true; }
			}
		}
	}
}
</string>
    <string>// CS0540: `B.A.B()': containing type does not implement interface `A'
// Line:

interface A {
}

class B {
	void A.B () {}

	static void Main () {}
}
</string>
    <string>// CS0540: `Foo.ISomeProp.SomeProperty': containing type does not implement interface `ISomeProp'
// Line: 18

public class SomeProperty
{
}

public abstract class SomeAbstract : ISomeProp
{
	public abstract SomeProperty SomeProperty { get; }
}

interface ISomeProp
{
	SomeProperty SomeProperty { get; }
}

public class Foo : SomeAbstract
{
	SomeProperty ISomeProp.SomeProperty { get { return null; } }

	public override SomeProperty SomeProperty { get { return null; } }

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