컴파일러 오류 C3342
'attribute': 모호한 특성입니다.
컴파일러가 특성의 정의를 둘 이상 찾았습니다.
특성이 두 번 이상 정의되었습니다.
자세한 내용은 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 {};