<?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>CS0551</ErrorName>
  <Examples>
    <string>// CS0551: Explicit interface implementation `PropertyClass.PropertyInterface.this[bool]' is missing accessor `PropertyInterface.this[bool].get'
// Line: 11

interface PropertyInterface
{
	int this [bool b] { get; set; }
}

public class PropertyClass: PropertyInterface
{
	int PropertyInterface.this [bool b] { 
		set { 
			return 0;
		} 
	}
}

</string>
    <string>// cs0551.cs: Explicit interface implementation `PropertyClass.PropertyInterface.Value' is missing accessor `PropertyInterface.Value.set'
// Line: 9

interface PropertyInterface {
        int Value { get; set; }
}

public class PropertyClass: PropertyInterface {
        int PropertyInterface.Value { 
                get { 
                        return 0;
                } 
        }
}


</string>
  </Examples>
</ErrorDocumentation>