-
Difference between managed and unmanaged code
Managed Code Managed code is created by the .NET compiler. It does not depend on the architecture of the target machine because it is executed by the CLR (Common Language Runtime), and not by the operating system itself. CLR and managed code offer developers few benefits, like garbage collection, type checking, exceptions handling. Unmanaged Code Unmanaged…