What is the difference between managed and unmanaged code?
Answer Posted / jonasstuart
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.
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.Check this useful article
https://www.mindstick.com/blog/833/difference-between-managed-code-and-unmanaged-code
http://www.agrini-tricks.in/Tutorial/Differentiate-between-managed-code-and-unmanaged-code.aspx
I hope it will help you
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the tools used for unit testing in ASP.Net MVC
What is namespace of asp.net mvc?
What is disconnected scenario? : Entity framework
how do you query in entity model when the result has a join from from different database other than the entity model?
What you mean by routing in asp.net mvc?
What is the difference between model and entity?
What is Separation of Concerns in ASP.NET ASP.Net MVC?
What are action filters?
Do you know about the new features in ASP.Net MVC 4 ?
Is razor a server side?
What is main objective of asp.net mvc 4 or what is new in mvc4 ?
How to Redirect Tracing to a File
Why to use '{resource}.axd/{*pathInfo}' in routing in ASP.Net MVC?
What are the 2 ways of adding constraints to a route?
Describe the gac in the .net framework.