Erreur du compilateur C3100
'target' : qualificateur d’attribut inconnu
Une cible d’attribut non valide a été spécifiée.
Pour plus d'informations, consultez User-Defined Attributes.
Exemple
L’exemple suivant génère l’erreur C3100.
// C3100.cpp
// compile with: /clr /c
using namespace System;
[AttributeUsage(AttributeTargets::All)]
public ref class Attr : public Attribute {
public:
Attr(int t) : m_t(t) {}
int m_t;
};
[invalid_target:Attr(10)]; // C3100
[assembly:Attr(10)]; // OK