<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1059</ErrorName>
  <Examples>
    <string>// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
// Line: 8

using System;

public class Test {
	void Main () {
		Console.WriteLine (++0);
	}
}
</string>
    <string>// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
// Line: 9

static class C
{
	static void Foo()
	{
		const int uu = 1;
		uu++;
	}
}</string>
    <string>// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
// Line: 11

using System;

class X
{
	static void Main ()
	{
		Decimal v;
		(v = new Decimal ())++;
	}
}
</string>
  </Examples>
</ErrorDocumentation>