Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I use Delphi code from a C# application?

Tags:

c#

delphi

I have a Delphi project, and I need to write a C# application, but I want to use some functions from this Delphi project. I haven't worked in Delphi before.

I found that I can create a DLL from the Delphi code and use it directly in C#. How can I do that? Or I also found some conversion tools to convert to C#, but it wasn't so good. So what is the best way? DLL or convert?

like image 224
Waleed Avatar asked May 18 '11 09:05

Waleed


1 Answers

Here is a very quick sample explains how to make dll in Delphi and then how to call it from C#. Here is Delphi code of simple dll with one function SayHello:

library DllDemo;

uses
  Dialogs;

{$R *.res}

Procedure SayHello;StdCall;
Begin
  ShowMessage('Hello from Delphi');
End;

exports
  SayHello;

begin
end.

Compile this code and it will produce a dll file.

now, the C# code to call the previous procedure in the dll is like this:

using System.Runtime.InteropServices;

namespace CallDelphiDll
{
  class Program
  {
    static void Main(string[] args)
    {
      SayHello();
    }

    [DllImport("DllDemo")]
    static extern void SayHello();
  }
}

Put the Delphi produced dll in the C# project output directory and run the C# application.

Now, expand this simple sample to achieve your requirement.

like image 71
Issam Ali Avatar answered Sep 29 '22 20:09

Issam Ali