コンパイラ エラー 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 {};