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 C2573

'identifier' : simple type cast must have exactly one expression

The conversion has the wrong number of actual parameters.

Example

void func() {
  int i = int();     // error, no actual parameters
  int j = int( 1.0 ) // OK
}