Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'attribute': none of the attribute constructors matched the arguments
Remarks
An invalid value was used to declare an attribute. See attribute for more information.
Example
The following example generates C3455.
// C3455.cpp
// compile with: /clr /c
using namespace System;
[attribute("MyAt")] // C3455
// try the following line instead
// [attribute(All)]
ref struct MyAttr {
MyAttr() {}
};