컴파일러 오류 C3919
'event_method': 함수에는 'type' 형식이 있어야 합니다.
이벤트 접근자 메서드가 올바르게 선언되지 않았습니다.
다음 샘플에서는 C3919를 생성합니다.
// C3919.cpp
// compile with: /clr /c
using namespace System;
delegate void D(String^);
ref class R {
event D^ e {
int add(int); // C3919
int remove(int); // C3919
void add(D^); // OK
void remove(D^); // OK
}
};