<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0470</ErrorName>
  <Examples>
    <string>// cs0470.cs: Method `C.get_P()' cannot implement interface accessor `I.P.get'
// Line: 11

interface I
{
	int P { get; }
}

class C : I
{
	public int get_P ()
	{
		return 1;
	}
}</string>
  </Examples>
</ErrorDocumentation>