Partager via


Erreur du compilateur C3094

« attribut » : utilisation anonyme non autorisée

La portée d’un attribut a été définie de manière incorrecte. Pour plus d'informations, consultez User-Defined Attributes.

Exemple

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

// C3094.cpp
// compile with: /clr /c
using namespace System;
[AttributeUsage(AttributeTargets::Class)]
public ref class AAttribute : Attribute {};

[A];   // C3094

// OK
[A]
ref class x{};