次の方法で共有


コンパイラ エラー C3097

'attribute': 属性は、'assembly:' または 'module:' と共にスコープされなければなりません

グローバル属性が正しく使用されていません。

詳細については、「 User-Defined Attributes」を参照してください。

次の例では C3097 が生成されます。

// C3097.cpp
// compile with: /clr /c
using namespace System;

[AttributeUsage(AttributeTargets::All, AllowMultiple = true)]
public ref class Attr : public Attribute {
public:
   Attr(int t) : m_t(t) {}
   int m_t;
};

[Attr(10)];   // C3097
[assembly:Attr(10)];   // OK

[Attr(10)]   // OK
public ref class MyClass {};