다음을 통해 공유


컴파일러 오류 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