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 C2659

'operator' : overloaded function as left operand

An overloaded function was on the left side of the specified operator.

Example

int func( int );
int func( double );
void main()
{
   func = 10;  // error
}