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 C3623

'variable' : bit fields are not supported

The use of bit fields is not permitted on variables in a managed class.

The following sample generates C3623:

#using <mscorlib.dll>
__gc class CMyClass {
   public:
      int i : 1;   // C3623
};

void main() {
   CMyClass *pMyClass = new CMyClass();
   pMyClass->i = 3;
   Console::Out->WriteLine(pMyClass->i);
}