NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS0187

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
   }
}