Erro do compilador C3459
'attribute': atributo permitido somente no indexador de classe (propriedade indexada padrão)
Um atributo projetado para ser aplicado a uma propriedade do indexador de classe foi usado incorretamente.
Para obter mais informações, consulte Como usar propriedades em C++/CLI.
Exemplo
O exemplo a seguir gera o erro C3459.
// C3459.cpp
// compile with: /clr /c
public ref class MyString {
public:
[System::Runtime::CompilerServices::IndexerName("Chars")] // C3459
property int Prop;
};
// OK
public ref class MyString2 {
array<int>^ MyArr;
public:
MyString2() {
MyArr = gcnew array<int>(5);
}
[System::Runtime::CompilerServices::IndexerName("Chars")] // OK
property int default[int] {
int get(int index) {
return MyArr[index];
}
void set(int index, int value) {
MyArr[index] = value;
}
}
};