次の方法で共有


コンパイラ エラー C3911

' event_accessor_method ': 関数は ' signature ' 型でなければなりません

イベントのアクセサー メソッドが正しく宣言されていません。

詳細については、event に関するページを参照してください。

次の例では 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) {}
   };
};