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 C2153

hex constants must have at least one hex digit

Hexadecimal constants 0x, 0X, and \x are illegal. At least one hex digit must follow x or X. The following sample generates C2153:

void main() {
   int a= 0x;   // C2153
   int b= 0xA;   // ok
}