다음을 통해 공유


컴파일러 오류 C3911

'event_accessor_method': 함수에는 'signature' 형식이 있어야 합니다.

이벤트의 접근자 메서드가 제대로 선언되지 않았습니다.

자세한 내용은 이벤트를 참조하세요.

다음 샘플에서는 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) {}
   };
};