다음을 통해 공유


컴파일러 오류 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
};