<?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>CS0198</ErrorName>
  <Examples>
    <string>// cs0198.cs: A static readonly field `X.a' cannot be assigned to (except in a static constructor or a variable initializer)
// Line: 8
class X {
	static readonly int a;

	static void Y ()
	{
		a = 1;
	}
}

	
</string>
  </Examples>
</ErrorDocumentation>