No such operator 'operator' defined for type 'type'
An operator was used on a type, but the operator is not defined for use on the type.
The following sample generates CS0187:
class MyClass { public static void Main(){ string someString = "Hello"; someString++; // CS0187 } }