﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0236</ErrorName>
  <Examples>
    <string>// cs0236.cs: A field initializer cannot reference the nonstatic field, method, or property `X.Foo'
// Line: 12

class X
{
	int Foo {
		get {
			return 9;
		}
	}

	long Bar = Foo;

	static void Main () {
	}
}

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