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 C3246

'class' : cannot inherit from 'class' as it has been marked as 'sealed'

A class that is marked as sealed cannot be the base class for any other classes. For example, the following sample generates C3246:

__sealed class X {
};

class Y : public X {
};

void main(){
}