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 C3164

Unrecognized symbol inside brackets

When declaring an array, an invalid value was specified inside the brackets.

The following sample generates C3164:

int[10] i;
int[k] j;   // C3164, k is not valid here
void main() {
}