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 C2137

empty character constant

The empty character constant ( ' ' ) is illegal. The following sample generates C2137:

void main() {
   char c = '';   // C2137
   // try ...
   // char d = ' ';   // ok
}