Errore del compilatore C3807
'type': una classe con l'attributo ComImport non può derivare da 'type2', è consentita solo l'implementazione dell'interfaccia
Un tipo derivato da ComImportAttribute può implementare solo un'interfaccia.
Esempio
L'esempio seguente genera l'errore 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 {};