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
What are the differences between events and delegates in c#?
What does console mean c#?
What does dbml stand for?
What are the benefits of using generics?
What are annotations in c#?
What is the base class in .net from which all the classes are derived from?
What is iqueryable?
Define Abstract Class in C#
What is icollection in c#?
Why do we need oops in c#?
Why do we use constructors in c#?
Define constructor in c#.
What is the compiler of c#?
What is option parameter in C#?
What are types of constructor?