הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'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() {}
};