Compartilhar via


Erro do compilador C3911

'event_accessor_method': a função precisa ter o tipo 'signature'

O método acessador de um evento não foi declarado corretamente.

Para obter mais informações, confira eventos.

O seguinte exemplo gera o erro C3911:

// C3911.cpp
// compile with: /clr
using namespace System;
delegate void H(String^, int);

ref class X {
   event H^ E1 {
      void add() {}   // C3911
      // try the following line instead
      // void add(H ^ h) {}

      void remove(){}
      // try the following line instead
      // void remove(H ^ h) {}

      void raise(){}
      // try the following line instead
      // void raise(String ^ s, int i) {}
   };
};