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 C2021

expected exponent value, not 'character'

The character used as the exponent of a floating-point constant is not a valid number. Be sure to use an exponent that is in range. The following sample generates C2021:

float test1=1.175494351E;   // C2021
// try ...
// float test2=1.175494351E8;

void main() {
}