Erreur du compilateur C3455
'attribut' : aucun des constructeurs d’attributs ne correspond aux arguments
Une valeur non valide a été utilisée pour déclarer un attribut. Pour plus d'informations, voir attribute .
Exemple
L’exemple suivant génère l’erreur C3455.
// C3455.cpp
// compile with: /clr /c
using namespace System;
[attribute("MyAt")] // C3455
// try the following line instead
// [attribute(All)]
ref struct MyAttr {
MyAttr() {}
};