Microsoft.NET Question:

Explain What does managed mean in the .NET context?

Tweet Share WhatsApp

Answer:

The executed by the CLR environment it is called Managed Code, which can provide security, Exception Handling and Memory Management (Garbage Collection). Provide Type Safe.

It becomes light weighted code.

The code which are all run under the CLR(Common Language Runtime) is called managed code.
The code which starts with unsafe doesn't run under CLR, called unmanaged code.

managed code is the safe code that couldnot make any harmful activities knowingly or unknowingly to the developer.

managed code is the secured harmless code without the developers knowledge.

Download Microsoft.NET PDF Read All 31 Microsoft.NET Questions
Previous QuestionNext Question
Explain garbage collection?How to customize the trace output?