Delphi 2010 and .net

How is the relationship of Delphi 2010 with .net? I remember that recently you could only generate .net 1.1 code. And now, how is it?

How does the old Delphi code (mostly 7) work when compiling for the .net platform instead of Win32? Is it compatible?

+4
source share
3 answers

You can argue that Embarcadero support for .Net is better than ever. Delphi Prism is fully updated with the latest version of the framework and even includes features not available in C # .

I was a big fan of VCL.Net, so I'm kind of torn on this subject. I liked the ability to exchange library code between platforms, and the visual part of VCL.Net was better suited for client applications than Winforms.

However, with the fact that Borland (at that time) was recording functionality that duplicated what was already in Visual Studio (for example, designers), diverted resources from the native Delphi and left them constantly playing catch-up and unable to support the latest version of the framework.

Even I had to admit that current support outweighs the loss of VCL.Net. I have to say that it refreshes the use of Pascal in ASP.Net projects.

+6
source

The Delphi for.NET project is dead as of the last two releases. It has been replaced by Prism from RemObjects, which is more or less compatible, but there is no VCL, and some of the syntax is different.

+4
source

Take a look at Delphi Prism

+1
source

Source: https://habr.com/ru/post/1304412/


All Articles