Compiler Error C3670
'override' : cannot override inaccessible base class method 'method'
An override can only take place on a function whose access level makes it available in a derived type. For more information, see Explicit Overrides.
The following sample generates C3670:
// C3670.cpp
// compile with: /clr /c
public ref class C {
// Uncomment the following line to resolve.
// public:
virtual void g() { }
};
public ref class D : public C {
public:
virtual void f() new sealed = C::g {}; // C3670
};