Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'member' : cannot be used as an explicit override, must be a member of a base class
Remarks
An explicit override was specified, but the function being overridden was in a type that is not a base type.
For more information, see Explicit Overrides.
Example
The following example generates C3651:
// C3651.cpp
// compile with: /clr /c
ref class C {
public:
virtual void func2();
};
ref class Other {
public:
virtual void func();
};
ref class D : public C {
public:
virtual void func() new sealed = Other::func; // C3651
virtual void func2() new sealed = C::func2; // OK
};