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 C2017

illegal escape sequence

An escape sequence, such as \t, appears outside of a character or string constant. The following sample generates C2017:

char test1='a'\n;   // C2017
// try ...
// char test2='a\n';   // ok

void main() {
}