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 C2564

'type' : a function-style conversion to a built-in type can only take one argument

Function-style type casts of built-in types take a single argument.

Example

void g(float f, double d) {
   int j=int(f, d);   //error
}