<?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>CS0200</ErrorName>
  <Examples>
    <string>// CS0200: The read only property or indexer `X.this[int]' cannot be assigned to
// Line: 12

class X {
	int this[int i] {
		get {
			return 1;
		}
	}

	static int Main ()
	{
		X x = new X ();
		x[0] = 10;
		return 1;
	}
}
</string>
    <string>// cs0200.cs: Property or indexer `X.P' cannot be assigned to (it is read only)
// Line: 12
class X {
	static int P {
		get {
			return 1;
		}
	}

	static int Main ()
	{
		P = 10;
		return 1;
	}
}
</string>
  </Examples>
</ErrorDocumentation>