Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
direct call of interface or pure method 'method' will fail at runtime
Remarks
A call was made to an interface method or a pure method, which is not allowed.
Example
The following sample generates C3278:
// C3278_2.cpp
// compile with: /clr
using namespace System;
interface class I
{
void vmf();
};
public ref class C: public I
{
public:
void vmf()
{
Console::WriteLine( "In C::vmf()" );
I::vmf(); // C3278
}
};
int main()
{
C^ pC = gcnew C;
pC->vmf();
}