<?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>CS0271</ErrorName>
  <Examples>
    <string>// CS0271: The property or indexer `C.this[string]' cannot be used in this context because a `set' accessor is inaccessible
// Line: 13

class C
{
	public int this [string i] { private set { } get { return 1; } }
}

public class Test
{
	void Foo ()
	{	C c = new C ();
		c [""] = 9;
	}
}
</string>
    <string>// cs0271.cs: The property or indexer `P.Prop' cannot be used in this context because the get accessor is inaccessible
// Line: 19

class P
{
    public static int Prop
    {
	private get {
	    return 4;
	}
	set {}
    }
}

public class C
{
    public static int Main ()
    {
	return P.Prop;
    }
}</string>
  </Examples>
</ErrorDocumentation>