Is unmanaged code the same as native code? What is the difference?
Duplicate: Difference between native and managed code?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Managed code is code that runs under a virtual machine, in other words its memory is “managed” by another program ( C# for example ).
Unmanaged code runs on the underlying architecture without requiring a virtual machine, but it may require a runtime library. ( C for example )
Further Reading: http://en.wikipedia.org/wiki/Managed_code
whoops, heres a Duplicate.