difference between managed code and unmanaged code ?
Answer Posted / 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 View All Answers
How do you specify a custom attribute for the entire assembly?
What is a Assembly?
What is COM Interoperability?
How can I create image pieces/sub image?
What is nullable types in c#?
What do multicast delegates mean?
how to create crystal reports give one detail example(i want to view age category report) please give suitable example in my small knowledge
What are custom exceptions? Why do we need them?
What is the file extension for c#?
Can a struct be null?
In .NET how can you solve the DLL Hell problem?
What is the task perform by clr?
What is the and operator in c#?
What are fields in c#?
Explain the difference between a Private Assembly and a Shared Assembly