次の方法で共有


コンパイラ エラー C3903

'property': set または get メソッドがありません

プロパティには、少なくとも get または set メソッドが必要です。 詳細については、「 property」を参照してください。

次の例では、C3903 エラーが生成されます。

// C3903.cpp
// compile with: /clr
ref class X {
   property int P {
      void f(int){}
      // Add one or both of the following lines.
      // void set(int){}
      // int get(){return 0;}
   };   // C3903

   property double Q[,,,,] {
      void f(){}
      // Add one or both of the following lines.
      // void set(int, char, int, char, double, double){}
      // double get(int, char, int, char, double){return 1.1;}
   }   // C3903
};