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?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With