次の方法で共有


コンパイラ エラー C3100

'target': 属性修飾子が不明です

無効な属性ターゲットが指定されました。

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

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

// C3100.cpp
// compile with: /clr /c
using namespace System;
[AttributeUsage(AttributeTargets::All)]
public ref class Attr : public Attribute {
public:
   Attr(int t) : m_t(t) {}
   int m_t;
};

[invalid_target:Attr(10)];   // C3100
[assembly:Attr(10)];   // OK