Condividi tramite


Errore del compilatore C3910

'event': deve definire il membro 'method'

È stato definito un evento, ma non contiene il metodo della funzione di accesso richiesto specificato.

Per altre informazioni, vedere evento.

L'esempio seguente genera l'errore C3910:

// C3910.cpp
// compile with: /clr /c
delegate void H();
ref class X {
   event H^ E {
      // uncomment the following lines
      // void add(H^) {}
      // void remove( H^ h ) {}
      // void raise( ) {}
   };   // C3910

   event H^ E2; // OK data member
};