What does 'managed' mean in the .NET context



What does 'managed' mean in the .NET context..

Answer / kirti

The term 'managed' is the cause of much confusion. It is used in various places within .NET, meaning slightly different things.Managed code: The .NET framework provides several core run-time services to the programs that run within it - for example

exception handling and security. For these services to work, the code must provide a minimum level of information to the runtime.

Such code is called managed code. All C# and Visual Basic.NET code is managed by default. VS7 C++ code is not managed by default, but the compiler can produce managed code by specifying a command-line switch (/com+).

Managed data: This is data that is allocated and de-allocated by the .NET runtime's garbage collector. C# and VB.NET data is always managed. VS7 C++ data is unmanaged by default, even when using the /com+ switch, but it can be marked as managed using the __gc keyword.Managed classes: This is usually referred to in the context of Managed Extensions (ME) for C++. When using ME C++, a class can be marked with the __gc keyword. As the name suggests, this means that the memory for instances of the class is managed by the garbage collector, but it also means more than that. The class becomes a fully paid-up member of the .NET community with the benefits and restrictions that brings. An example of a benefit is proper interop with classes written in other languages - for example, a managed C++ class can inherit from a VB class. An example of a restriction is that a managed class can only inherit from one base class.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

what is view state

3 Answers   Wipro,


What is JIT and how is works ?

10 Answers  


What are non action methods in mvc?

0 Answers  


Why is the .net framework 3.0 a major version number of the .net framework if it uses the .net framework 2.0 runtime and compiler?

0 Answers  


What is the difference between model view and controller?

0 Answers  






what is entityclient?

0 Answers   Microsoft,


mention what is the difference between ado.net and classic ado?

0 Answers   Microsoft,


List the new features added in .net framework 4.0.

0 Answers  


Where are the value-type variables allocated in the computer RAM ?

1 Answers  


What is ViewData and TempData in ASP.Net MVC?

0 Answers  


What is orm entity framework?

0 Answers  


Can you declare an override method to be static if the original method is non-static

1 Answers  


Categories