<?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>CS0200</ErrorName>
  <Examples>
    <string>// CS0200: Property or indexer `X.this[int]' cannot be assigned to (it is read-only)
// Line: 14

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

	static int Main ()
	{
		X x = new X ();
		x[0] = 10;
		return 1;
	}
}
</string>
    <string>// CS0200: Property or indexer `A.Counter' cannot be assigned to (it is read-only)
// Line: 9

class Program
{
	static void Main()
	{
		A a = new A();
		a.Counter++;
	}
}

class A {
	private int? _counter;
	public int? Counter {
		get { return _counter; }
	}
}
</string>
    <string>// CS0200: Property or indexer `X.P' cannot be assigned to (it is read-only)
// Line: 13

class X {
	static int P {
		get {
			return 1;
		}
	}

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