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 C2236

unexpected 'class-key' 'identifier'

The identifier is already defined as a type and cannot be overridden by a user-defined type. The following sample generates C2236:

int class A {   // C2236, delete int to resolve the error
};

void main() {
}