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 C2041

illegal digit 'character' for base 'number'

The specified character is not a legal digit for the base (such as octal or hex). The following sample generates C2041:

int i = 081; // error, 8 is not a legal digit
int i = 071; // OK