<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0200</ErrorName>
  <Examples>
    <string>// CS0200: Property or indexer `C.S' cannot be assigned to (it is read-only)
// Line: 10

class C
{
	public static int S { get; }

	public C ()
	{
		S = 3;
	}
}
</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>
    <string>// CS0200: Property or indexer `C.P' cannot be assigned to (it is read-only)
// Line: 10

class C
{
	public int P { get; }

	public void Foo ()
	{
		P = 10;
	}
}
</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 `A.X' cannot be assigned to (it is read-only)
// Line: 13

public class A
{
	public int X { get; }
}

public class B : A
{
	public B ()
	{
		base.X = 1;
	}
}</string>
    <string>// CS0200: Property or indexer `MyClass.Type' cannot be assigned to (it is read-only)
// Line: 12

using System;

 public class MyClass
 {
	Type Type { get; }

	public void Test ()
	{
		Type = typeof (string);
	}
}</string>
    <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>
  </Examples>
</ErrorDocumentation>