컴파일러 오류 C3453
'attribute': 'assembly' 한정자가 일치하지 않아 특성이 적용되지 않았습니다.
어셈블리 또는 모듈 수준 특성만 독립 실행형 명령으로 지정할 수 있습니다.
예시
다음 샘플에서는 C3453을 생성합니다.
// C3453.cpp
// compile with: /clr /c
[assembly:System::CLSCompliant(true)] // C3453
// try the following line instead
// [assembly:System::CLSCompliant(true)];
ref class X {};