コンパイラ エラー C3342
'attribute': あいまいな属性です
コンパイラが 1 つの属性の定義を複数検出しました。
属性が複数回定義されています。
詳細については、「 User-Defined Attributes」を参照してください。
例
次の例では C3342 が生成されます。
// C3342.cpp
// compile with: /clr /c
using namespace System;
using namespace System::Reflection;
[AttributeUsage(AttributeTargets::All)]
public ref class XAttribute : public Attribute {};
[AttributeUsage(AttributeTargets::All)]
public ref class X : public Attribute {};
[X] // C3342 could refer to X or XAttribute
// try the following line instead
// [XAttribute]
public ref class Class4 {};