Partager via


Erreur du compilateur C3458

'attribute1' : attribut 'attribute2' déjà spécifié pour 'construct'

Deux attributs qui s’excluent mutuellement ont été spécifiés pour la même construction.

Exemple

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

// C3458.cpp
// compile with: /clr /c
[System::Reflection::DefaultMember("Chars")]
public ref class MyString {
public:
   [System::Runtime::CompilerServices::IndexerName("Chars")]   // C3458
   property char default[int] {
      char get(int index);
      void set(int index, char c);
   }
};