<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0131</ErrorName>
  <Examples>
    <string>// CS0131: The left-hand side of an assignment must be a variable, property or indexer
// Line: 10
using System;

class X
{
	static void Main ()
	{
		int a = 7;
		+a = 9;
	}
}
</string>
    <string>// cs0131.cs: left hand side of an assignment must be variable, property access or indexer
// Line:
class X {
	void A ()
	{
		5 = 4;
	}
}
</string>
  </Examples>
</ErrorDocumentation>