Condividi tramite


Errore del compilatore C3296

'property': esiste già una proprietà con questo nome

Sono state rilevate più proprietà con lo stesso nome. Ogni proprietà in un tipo deve avere un nome univoco.

Per altre informazioni, vedere property.

Esempio

L'esempio seguente genera l'errore C3296.

// C3296.cpp
// compile with: /clr /c
using namespace System;

ref class R {
public:
   property int MyProp[int] { int get(int); }

   property String^ MyProp[int] { void set(int, String^); }   // C3296
};