Difference between Managed and Unmanaged code in .NET - Hindi

Опубликовано: 21 Октябрь 2024
на канале: QuizzToday
291
6

Difference between Managed and Unmanaged code in NET

The code that is managed by the CLR (Common Language Runtime) is called Managed code. This code runs inside the CLR. Hence, it is necessary to install the .Net framework in order to execute the managed code. CLR manages the memory through garbage collection.
Unmanaged code is any code that does not depend on CLR for execution. It means it is developed by any other language independent of .Net framework. It uses its own runtime environment for compiling and execution.

#dotnet
#dotnetinterviewquestion
#csharp
#csharptutorial
#dotnet8