Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Warning C4693

Error Message

'class': a sealed abstract class cannot have any instance members 'Test'

If a type is marked sealed and abstract (Visual C++), it can only have static members.

Example

The following sample generates C4693.

// C4693.cpp
// compile with: /clr /c
public ref class Public_Ref_Class sealed abstract {
public:
   void Test() {}   // C4693
   static void Test2() {}   // OK
};
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.