Kompilatorfel C3754

delegatkonstruktor: medlemsfunktionen "function" kan inte anropas på en instans av typen "typ"

Anmärkningar

Ett anrop gjordes till en funktion via en pekare till en typ som inte innehåller funktionen.

Example

I följande exempel genereras C3754:

// C3754a.cpp
// compile with: /clr
using namespace System;

delegate void MyDel();

interface class MyInterface {};

ref struct MyClass : MyInterface {
   void f() {}
};

int main() {
   MyInterface^ p = gcnew MyClass;
   MyDel^ q = gcnew MyDel(p, &MyClass::f);   // C3754
   // try the following line instead
//   MyDel^ q = gcnew MyDel(safe_cast<MyClass^>(p), &MyClass::f);
}