Erreur du compilateur C3103
'argument' : argument nommé répété
Un attribut ne peut pas répéter les arguments nommés.
Pour plus d'informations, consultez User-Defined Attributes.
Exemple
L’exemple suivant génère l’erreur C3103.
// C3103.cpp
// compile with: /clr /c
using namespace System;
[AttributeUsage(AttributeTargets::All)]
public ref class Attr : public Attribute {
public:
int m_t;
};
[Attr(m_t = 10, m_t = 1)] // C3103
// try the following line instead
// [Attr(m_t = 10)]
ref class A {};