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 C2802

static member 'operator operator' has no formal parameters

An operator declared by a static member function must have at least one parameter.

Example

class A
{
   static operator+ ();     // error, void parameter list
   static operator* ( A& ); // OK
};