<?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>CS0277</ErrorName>
  <Examples>
    <string>// cs0277.cs: Accessor `C.Prop.set' must be declared public to implement interface member `I.Prop.set'
// Line: 10

interface I {
	decimal Prop { set; }
}

class C: I {
	public decimal Prop {
		internal set {}
		get {
			return 0;
		}
	}
}</string>
  </Examples>
</ErrorDocumentation>