次の方法で共有


コンパイラ エラー C3902

'accessor': 最後のパラメーターの型は 'type' でなければなりません

少なくとも 1 つの set メソッドの最後のパラメーターの型は、プロパティの型と一致している必要があります。 詳細については、「 property」を参照してください。

次の例では C3902 が生成されます。

// C3902.cpp
// compile with: /clr /c
using namespace System;
ref class X {
   property String ^Name {
      void set(int);   // C3902
      // try the following line instead
      // void set(String^){}
   }

   property double values[int,int] {
      void set(int, int, float);   // C3902
      // try the following line instead
      // void set(int, int, double){}
   }
};