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 C2018

unknown character 'hexnumber'

The source file contains an unexpected ASCII character, which is identified by its hex number. To resolve the error, remove the character. The following sample generates C2018:

void main(){
   int i™ = 1;   // C2018, remove the extended ascii character
}