<?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>CS0026</ErrorName>
  <Examples>
    <string>// cs0026-2.cs: Keyword `this' is not valid in a static property, static method, or static field initializer
// Line: 4
class X {
	static object o = this;

	static int Main ()
	{
		return 1;
	}
}
</string>
    <string>// CS0026: Keyword `this' is not valid in a static property, static method, or static field initializer
// Line: 7

class A : B
{
	public A () 
		: base (this)
	{
	}
}

class B
{
	public B (B b)
	{
	}
}</string>
    <string>// cs0026.cs: Keyword `this' is not valid in a static property, static method, or static field initializer
// Line: 6
class X {
	static void A ()
	{
		this = null;
	}
}
</string>
  </Examples>
</ErrorDocumentation>