다음을 통해 공유


컴파일러 오류 C3094

'attribute': 익명으로 사용할 수 없습니다.

특성의 범위를 올바르게 지정하지 않았습니다. 자세한 내용은 User-Defined Attributes을 참조하세요.

예시

다음 샘플에서는 C3094를 생성합니다.

// C3094.cpp
// compile with: /clr /c
using namespace System;
[AttributeUsage(AttributeTargets::Class)]
public ref class AAttribute : Attribute {};

[A];   // C3094

// OK
[A]
ref class x{};