One of our clients wants their Delphi application to be converted to .NET 4.0. After reading responses to various similar questions on this site, I've decided to take a step-by-step approach of converting the Delphi code to .NET.
Since I am a .NET developer, I need to first get familiar with Delphi. It is quite difficult to find any single site which provided a comprehensive overview of the concepts of Delphi. Also I haven't still found any site which provides information about the equivalents of Delphi in .NET. For example what is the equivalent of "stdcall" or "export" in .NET? or what is the equivalent of a particular Delphi datatype in .NET?
Does anyone know about such online resource which provide information about Delphi equivalents in .NET? Also if anyone could provide any tips on this?
stdcallandexportkeywords signal a DLL designed to be used from other applications. There's no direct equivalent in the .NET world because you can't link to a .NET library from a Native application, you need to use all sorts of interop technologies. – Cosmin Prund Jun 1 '11 at 12:39