﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0200</ErrorName>
  <Examples>
    <string>// cs0200: can not assign to property X.P -- it is readonly
// line: 12
class X {
	static int P {
		get {
			return 1;
		}
	}

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