<?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>CS0272</ErrorName>
  <Examples>
    <string>// CS0272: The property or indexer `C.this[string]' cannot be used in this context because the 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>// cs0272.cs: The property or indexer `P.Prop' cannot be used in this context because the set accessor is inaccessible
// Line: 19

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

public class C
{
    public static void Main ()
    {
	P.Prop = 453422;
    }
}</string>
  </Examples>
</ErrorDocumentation>