다음을 통해 공유


컴파일러 오류 C3097

'attribute': 특성의 범위는 ‘assembly:’ 또는 ‘module:’이어야 합니다.

전역 특성이 잘못 사용되었습니다.

자세한 내용은 User-Defined Attributes을 참조하세요.

예시

다음 샘플에서는 C3097을 생성합니다.

// C3097.cpp
// compile with: /clr /c
using namespace System;

[AttributeUsage(AttributeTargets::All, AllowMultiple = true)]
public ref class Attr : public Attribute {
public:
   Attr(int t) : m_t(t) {}
   int m_t;
};

[Attr(10)];   // C3097
[assembly:Attr(10)];   // OK

[Attr(10)]   // OK
public ref class MyClass {};