다음을 통해 공유


컴파일러 오류 C3807

'type': ComImport 특성이 있는 클래스는 'type2'에서 파생될 수 없으며 인터페이스 구현만 허용됩니다.

파생된 형식은 ComImportAttribute 인터페이스만 구현할 수 있습니다.

예시

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

// C3807.cpp
// compile with: /clr /c
ref struct S {};
interface struct I {};

[System::Runtime::InteropServices::ComImportAttribute()]
ref struct S1 : S {};   // C3807
ref struct S2 : I {};