Delphi to .NET Converter

Does anyone know about a Delphi to .NET converter (either C # or VB.NET)? I inherited a bunch of Delphi code, had never seen Pascal before and studied it instead, I would rather try to use an automatic converter, if available, and clear the code after that. It seems that I can’t find such a tool, I’m looking for it - perhaps because it is not there - so I thought someone here might know.

+7
c # delphi
source share
3 answers

I have no experience using these tools, but here are a couple:

Delphi2cs

Turnsharp

A similar question was asked:

What tools exist to convert a Delphi 7 application to C # and the .NET Framework?

+9
source share

Spend your time .. If you want to convert the code because you don’t understand or like the original language, my advice is: “Do not worry” (believe me, I made many attempts to convert the code), especially if you plan to just make a few small changes to existing code.

You cannot convert the code and compile it, not to mention flawless operation.

You may be able to translate the parts into something syntactically correct, but you will not have the libraries or frameworks (RTL / VCL) that the software relies on.

You will need to go back to the Delphi code and understand what is happening to fix the parts that do not work. It will take longer to fix errors in the generated code than it would take to examine existing code and completely rewrite it.

And if you have time to rewrite the software in another language, you can just roll up your sleeves, study the source language and change what you need to change in the existing code.

+11
source share

You need to work on your google skills. The second hit in this google query , the first is a commercial solution.

0
source share

All Articles