'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(){ }