Compatible with Delphi with .NET.

I currently have a delphi code base (win32). I want to expand the functionality, however my knowledge is in .NET (C #), and I would like to keep the existing code base and add new functions to .NET.

What, if any, are my options (for delphi and .NET to work)?

Thanks!

+5
source share
5 answers

I have not used it, but check out RemObject Hydra .

Hydra makes it easy to mix and match native Delphi and .NET managed code into one application, allowing developers to choose the best set of technologies for their needs.

, .NET Delphi , Delphi native. , , , .

, .NET COM Delphi. .NET #, Prism, VB.NET .NET-.

+7

:

  • .NET COM (interop), Delphi.

  • Delphi .Net ( Delphi), Delphi 2006, , Delphi .Net-. , , Delphi , .

, /, .NET, . DLL.

Delphi "" " " ( " " ). , 3

  • ActiveX
  • .NET

, . - DLL, " " "" DLL.

. - "Generate Wrappers Component Wrappers", . - lib , .

, ( , ).

, .Net- Delphi - :

var MyCSharpClassInstance: TMyCSharpClassProvider;
begin
     MyCSharpClassInstance:=CoTMyCSharpClassProvider.Create;
     MyCSharpClassInstance.Free;
End
+6

Delphi .NET, Delphi Prism ( 2009). Delphi .NET, , #.

, .

+2

, Delphi, , .NET.

http://www.codegear.com/products/bds2006

"Developer Studio 2006 RAD C # Delphi Win32 Delphi .NET".

0
source

You can look here , they create a compiler for Delphi.Net. Perhaps this will be the way forward.

0
source

All Articles