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 C2574

'destructor' : constructors and destructors cannot be declared static

Neither destructors nor constructors can be declared static. The following sample generates C2574:

class A {
   virtual static ~A();   // C2574, remove static to resolve error
};

void main() {
}