1.

What is the difference between managed and unmanaged code?

Answer»

The MAIN difference between managed and UNMANAGED code is LISTED below:

Managed CodeUnmanaged Code
It is managed by CLR.It is not managed by CLR.
.NET framework is a must for execution.Does not require a .NET framework for the execution.
MEMORY MANAGEMENT is done through garbage collection.Runtime environment takes care of memory management.


Discussion

No Comment Found