difference between managed code and unmanaged code ?

Answers were Sorted based on User's Feedback



difference between managed code and unmanaged code ?..

Answer / mayuri

the code which is run under the observation of clr is
called managed code.

at other side the code means native code which is run on
operating system and not run under onservation of clr is
known as unmanaged code.

Is This Answer Correct ?    8 Yes 0 No

difference between managed code and unmanaged code ?..

Answer / vasanth

Managed Code:
The code which is running under the control of CLR is called Managed Code.
UnManaged Code:
If we are using some third party tools, then those code will not be under the control of CLR is called UnManaged code.

Is This Answer Correct ?    5 Yes 0 No

difference between managed code and unmanaged code ?..

Answer / kirti

Managed Code:

Code that runs under a "contract of cooperation" with the common language runtime. Managed code must supply the metadata necessary for the runtime to provide services such as memory management, cross-language integration, code access security, and

automatic lifetime control of objects. All code based on Microsoft intermediate language (MSIL) executes as managed code.

Un-Managed Code:

Code that is created without regard for the conventions and requirements of the common language runtime. Unmanaged code executes in the common language runtime environment with minimal services (for example, no garbage collection, limited debugging, and so on).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is delay signing..??

1 Answers   HCL,


Indexers in c#?

8 Answers   Intaglio, Microsoft, TCS,


Explain the process of inheriting a class into another class?

0 Answers  


Can a class have static constructor?

0 Answers  


why instance? what are the uses of instance?

3 Answers   Choice Solutions,






what are wrapper classes?

1 Answers  


What?s an abstract clas?

5 Answers   Mind Tree,


What is the predicate of a sentence?

0 Answers  


Difference between multi-level and multiple inheritance?

17 Answers   Microsoft,


Is null c# operator?

0 Answers  


What does return do in unity?

0 Answers  


Is everything an object c#?

0 Answers  


Categories