Condividi tramite


Errore del compilatore C3155

Gli attributi non sono consentiti in un indicizzatore di proprietà

Una proprietà indicizzata è stata dichiarata in modo non corretto. Per altre informazioni, vedere Procedura: Usare le proprietà in C++/CLI.

Esempio

L'esempio seguente genera l'errore 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;
      }
   }
};