Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[attribute] not allowed on class declaration
Remarks
A class must be defined for it to be an attribute.
For more information, see attribute.
Example
The following example generates C3454.
// C3454.cpp
// compile with: /clr /c
using namespace System;
[attribute]   // C3454
ref class Attr1;
[attribute]   // OK
ref class Attr2 {};