<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <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.cs: `B.A.B()': containing type does not implement interface `A'
// Line:

interface A {
}

class B {
	void A.B () {}

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