Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi to .NET Converter

Does any one know of a Delphi to .NET converter (either C# or VB.NET)? I've inherited a bunch of Delphi code, never seen Pascal before and rather than learn it, I'd rather just try to use an automated converter, if available, and clean up the code after that. Can't seem to find this kind of tool anyway I search - maybe that's because one doesn't exist - so I thought someone here may know.

like image 495
Todd Main Avatar asked Sep 04 '10 20:09

Todd Main


2 Answers

Spare your time.. If you want to convert code because you don't understand or like the original language, my advice is: "Don't bother" (believe me, I've made numerous attempts to convert code). Especially if you're planning to just make a couple of small changes to the existing code.

You won't be able to convert the code and have it compile, let alone run flawlessly.

You might be able to translate portions into something that is syntactically correct, but you won't have the libraries or frameworks (RTL/VCL) that the software relies on.

You're going to have to go back to the Delphi code and be able to understand what's happening to fix parts that are not working. It's going to take more time to fix bugs in the generated code than it would take to study the existing code and rewrite it entirely.

And if you have the time to rewrite software in another language, you might as well just roll up your sleeves, learn the original language, and change what you need to change in the existing code.

like image 171
Wouter van Nifterick Avatar answered Sep 22 '22 06:09

Wouter van Nifterick


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?

like image 28
Edward Leno Avatar answered Sep 26 '22 06:09

Edward Leno