Difference between managed code and managed data ?
Difference between managed code and managed data ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Upendra Pratap ShahiPosted Dec 1, 2015, 5:06 AM
Managed Code
Managed code is what Visual Basic .NET and C# compilers create. It runs on the CLR (Common Language Runtime), which, among other things, offers services like garbage collection, run-time type checking, and reference checking. So, think of it as, "My code is managed by the CLR."
Unmanaged Code
Unmanaged code compiles straight to machine code. So, by that definition all code compiled by traditional C/C++ compilers is 'unmanaged code'. Also, since it compiles to machine code and not an intermediate language it is non-portable.
PradeepPosted Feb 20, 2015, 1:44 AM
Managed Code
Managed code is what Visual Basic .NET and C# compilers create. It runs on the CLR (Common Language Runtime), which, among other things, offers services like garbage collection, run-time type checking, and reference checking. So, think of it as, "My code is managed by the CLR."
Unmanaged Code
Unmanaged code compiles straight to machine code. So, by that definition all code compiled by traditional C/C++ compilers is 'unmanaged code'. Also, since it compiles to machine code and not an intermediate language it is non-portable.
Prasham SabadraPosted Feb 20, 2015, 1:06 AM
Joginder BangerPosted Feb 19, 2015, 10:59 PM
http://www.geekinterview.com/question_details/4540
and more link try this
http://www.dotnetspark.com/qa/109-what-is-managed-code-and-managed-data.aspx