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 access modifiers used for?
What are the variables in c#?
what is generics? can u explain 5 to 6 examples on generics that covers class,method,structure,list,delegates?
What do you mean by delegates and explain different types of delegates?
What is the difference between CONST and READONLY?
Can we change static value in c#?
Explain the Abstract class in c#.net
Can we inherit partial class in c#?
What is regex c#?
How Is The Dll Hell Problem Solved In .net?
What is difference between write and writeline in c#?
Define MSIL, and how does it works? Why our developers need an appreciation of it if at all?
What is string [] args in c#?
What is inline function in c#?
What is the use of convert toint32 in c#?