다음을 통해 공유


컴파일러 오류 C3910

'event': 멤버 'method'를 정의해야 합니다.

이벤트가 정의되었지만 지정된 필수 접근자 메서드를 포함하지 않았습니다.

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

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