Erreur du compilateur C3903

'property' : n’a pas de méthode set ou get

Une propriété doit avoir au moins une get ou une set méthode. Pour plus d'informations, consultez property.

L’exemple suivant génère l’erreur 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
};