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 C2864

'variable' : only const static integral data members can be initialized inside a class or struct"

You attempted to initialize a nonstatic data member.

class B  {
int i = 3;   // C2864; 
// try ...
// static const int i = 3;
};