Partager via


Erreur du compilateur C3155

les attributs ne sont pas autorisés dans un indexeur de propriété

Une propriété indexée a été déclarée incorrectement. Pour plus d’informations, consultez How to : Use Properties in C++/CLI.

Exemple

L’exemple suivant génère l’erreur C3155.

// C3155.cpp
// compile with: /clr /c
using namespace System;
ref struct R {
   property int F[[ParamArray] int] {   // C3155
   // try the following line instead
   // property int F[ int] {   // OK
      int get(int i) {
         return 0;
      }
   }
};