컴파일러 오류 C3095
'attribute': 특성을 반복할 수 없습니다.
일부 특성이 대상에 특성을 여러 번 적용할 수 없도록 선언되었습니다.
자세한 내용은 User-Defined Attributes을 참조하세요.
예시
다음 샘플에서는 C3095를 생성합니다.
// C3095.cpp
// compile with: /clr /c
using namespace System;
[AttributeUsage(AttributeTargets::All, AllowMultiple=false)]
public ref class Attr : public Attribute {
public:
Attr(int t) : m_t(t) {}
const int m_t;
};
[AttributeUsage(AttributeTargets::All, AllowMultiple=true)]
public ref class Attr2 : public Attribute {
public:
Attr2(int t) : m_t(t) {}
const int m_t;
};
[Attr(10)] // C3095
[Attr(11)]
ref class A {};
[Attr2(10)] // OK
[Attr2(11)]
ref class B {};