Erro do Compilador C3342
'attribute': atributo ambíguo
O compilador encontrou mais de uma definição de um atributo.
Um atributo foi definido mais de uma vez.
Para obter mais informações, confira Atributos definidos pelo usuário.
Exemplo
A amostra a seguir gera 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 {};