Autor Beitrag
DracoBlue
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 26



BeitragVerfasst: So 08.01.06 18:53 
Hallo!

Ich bin noch etwas neu in der delphi .net welt :).

deshalb hier meine wohl recht einfache frage.

Ich habe in c# ein interface implementiert. Alles als Assembly vorliegen.

Gehen tut:
ausblenden Delphi-Quelltext
1:
var TestVar:iCCharpInterface;					


Gehen tut unerwarteter weise nicht:
ausblenden Delphi-Quelltext
1:
2:
3:
type  
    DelphiImplement=class(iCCharpInterface)
    end;


Jemand ein Hinweis, welches kleine Detail ich vergessen hab?

Danke im Vorraus,
Draco


EDIT:
aber so gehts
ausblenden Delphi-Quelltext
1:
type cHelper=class(TInterfacedObject,iCCharpInterface)