Describe the advantages of writing a managed code application instead of unmanaged one. What’s involved in certain piece of co

Q

Describe the advantages of writing a managed code application instead of unmanaged one. What’s involved in certain piece of code being managed?

✍: Guest

A

The advantages include automatic garbage collection, memory management, support for versioning and security. These advantages are provided through .NET FCL and CLR, while with the unmanaged code similar capabilities had to be implemented through third-party libraries or as a part of the application itself.

2014-11-19, 1871👍, 0💬