Which tool do you suggest, to convert a legacy delphi 7.0 app to c# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T20:07:50Z http://stackoverflow.com/feeds/question/507839 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/507839/which-tool-do-you-suggest-to-convert-a-legacy-delphi-7-0-app-to-c 4 Which tool do you suggest, to convert a legacy delphi 7.0 app to c# ChaosSpeeder 2009-02-03T16:29:56Z 2009-02-04T09:55:57Z <p>A simple google query shows a bunch of tools, which seems to convert Delphi to C# code. </p> <p>Example: <a href="http://www.google.de/search?q=delphi+c%23+converter" rel="nofollow">http://www.google.de/search?q=delphi+c%23+converter</a></p> <p>Do you have experience with one of this tools or the approach of migration source from Delphi to the .NET platform? Is this a viable option?</p> <p>Our general conditions:</p> <ul> <li>Delphi 7.0 Platform => .NET 2.0 (or higher)</li> <li>BDE 5.0 => ADO.NET </li> <li>GUI - Components (TForm, TTable) => WinForm</li> </ul> <p>Thank you for your help.</p> http://stackoverflow.com/questions/507839/which-tool-do-you-suggest-to-convert-a-legacy-delphi-7-0-app-to-c/507852#507852 5 Answer by Craig Stuntz for Which tool do you suggest, to convert a legacy delphi 7.0 app to c# Craig Stuntz 2009-02-03T16:32:33Z 2009-02-03T16:32:33Z <p>I don't think a direct transliteration of Delphi code into C# delivers any real value. If you're going to convert to C#, why not take advantage of the distinct architecture of the .NET platform and the rich tooling available there, like the Entity Framework, etc.?</p> <p>If you directly convert your Delphi/VCL source code, you will probably end up with an application which is slow (because it is working against the grain of how the FCL is intended to be used), in which would look alien to most .NET developers. You would gain nothing from useful abstractions like IQueryable/LINQ.</p> <p>Yes, this is extra work, but look at it as an opportunity to improve the architecture of your applications and address craft in your source base.</p> http://stackoverflow.com/questions/507839/which-tool-do-you-suggest-to-convert-a-legacy-delphi-7-0-app-to-c/507881#507881 21 Answer by Nick Hodges for Which tool do you suggest, to convert a legacy delphi 7.0 app to c# Nick Hodges 2009-02-03T16:39:40Z 2009-02-03T16:39:40Z <p>I'm a bit biased, I wouldn't recommend converting the app to C#. Why do you need to? If it is working in D7, what need is there to convert it? </p> <p>I'd recommend getting Delphi 2009 and moving forward that way. You'll still get the performance of a native application with the power of your existing code.</p> http://stackoverflow.com/questions/507839/which-tool-do-you-suggest-to-convert-a-legacy-delphi-7-0-app-to-c/507928#507928 7 Answer by Fortyrunner for Which tool do you suggest, to convert a legacy delphi 7.0 app to c# Fortyrunner 2009-02-03T16:50:45Z 2009-02-03T17:06:09Z <p>I had a very successful application that was written in Delphi.</p> <p>Management made the decision to convert to C# - mainly because we couldn't hire good Delphi developers anymore.</p> <p>The conversion was done by an external company and they did pretty much a line for line conversion.</p> <p>It was a disaster: the worst of both worlds. The amount of time that they spent fixing bugs could have been spent on doing a proper rewrite.</p> <p>Don't do an automated conversion - do the job properly!</p> http://stackoverflow.com/questions/507839/which-tool-do-you-suggest-to-convert-a-legacy-delphi-7-0-app-to-c/509300#509300 1 Answer by Vegar for Which tool do you suggest, to convert a legacy delphi 7.0 app to c# Vegar 2009-02-03T22:49:43Z 2009-02-03T22:49:43Z <p>It would be interesting to know the motivation behind the conversion. </p> <p>There are ways to make win32 and .net code co-operate. You can make future development in .net, and keep the old codebase in delphi. And you can convert parts of the old system over to new platform when needed or when there is time.</p> <p>Check out <a href="http://www.remobjects.com/hydra.aspx" rel="nofollow">Hydra</a> from RemObjects. I haven't used it my self, but it looks like fun..</p> <p>There is no point in a line-by-line conversion, though. You would end up with something similare to what google-translate produces..</p> http://stackoverflow.com/questions/507839/which-tool-do-you-suggest-to-convert-a-legacy-delphi-7-0-app-to-c/510727#510727 1 Answer by dmajkic for Which tool do you suggest, to convert a legacy delphi 7.0 app to c# dmajkic 2009-02-04T09:55:57Z 2009-02-04T09:55:57Z <p><strong>Delphi 7 -> Net 2.0</strong> </p> <ul> <li>You will lose users below XP SP2 or Win2kSP4 </li> <li>Net 2.0 can be installed on Win98 but it won't work as you wolud expect</li> <li>Your installation should include dotnet2 framework setup (25Mb more).</li> <li>You will loose a lot of speed. Specialy your users on slower hardware.</li> </ul> <p><strong>BDE -> ADO.Net</strong> </p> <p>Are you using SQL database or flat-file, like Paradox, DBF, ...? </p> <p>If you are on flat file, then you need to convert to SQL, or live in pain. </p> <p><strong>GUI - Components (TForm, TTable) => WinForm</strong> </p> <p>Note that <strong>TTable</strong> is not GUI component. </p> <p>And WinForms is practically deprecated technology, with huge push on WPF and Silverlight migration. And that requires v3.5.</p> <p><strong>IMHO:</strong> If you are not going for Web based product, Delphi is still windows desktop No1.</p>