adspace


Tell us the difference between managed and unmanaged code?

Answer Posted / Raj Kumar

Managed code is any code written in a language that's compatible with the .NET Common Language Runtime (CLR), such as C#, VB.NET, or F#. Managed code has access to CLR services like memory management, exception handling, and garbage collection. In contrast, unmanaged code is written in low-level languages like C++ without using .NET Framework's managed environment. Unmanaged code doesn't have access to CLR services, so developers must handle memory management, security, and other tasks themselves.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143