<?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>CS0187</ErrorName>
  <Examples>
    <string>// cs0187.cs: No such operator '++' defined for type 'bool'
// Line: 13

public class C{
  public static bool Foo{
    get{
      return false;
    }
    set{
    }	
  }
  public static void Main(){
    Foo++;
  }
}
</string>
    <string>// cs0187.cs: No such operator '++' defined for type 'object'
// Line: 9

using System;
using System.Collections;

class Test {
	public static void Main(string[] args) {
		ArrayList al = new ArrayList();
		al[0] = 0;
		
		Console.WriteLine((al[0])++);
	}
}
</string>
    <string>// cs0187.cs: No such operator '++' defined for type 'X'
// Line: 9

class X {
	static void Main ()
	{
		X x = new X();

		x++;
	}
}
</string>
  </Examples>
</ErrorDocumentation>