다음을 통해 공유


컴파일러 오류 C3455

'attribute':해당 인수와 일치하는 특성 생성자가 없습니다.

잘못된 값이 특성을 선언하는 데 사용되었습니다. 자세한 내용은 attribute 를 참조하세요.

예시

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

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

[attribute("MyAt")]   // C3455
// try the following line instead
// [attribute(All)]
ref struct MyAttr {
   MyAttr() {}
};