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 C2433

'identifier' : 'modifier' not permitted on data declarations

The friend, virtual, and inline modifiers cannot be used for data declarations. The following sample generates C2433:

class A {
   virtual static int b;   // C2433, remove virtual to resolve the error
};

void main() {
}