What is the difference between managed and unmanaged code?
Answer Posted / rita patel
The code that targets the CLR is known as managed code.
and the code that doesn't targets the CLR is known as
unmanaged code.
unmanaged code is still executed by CLR but it doesn't get
advantages of CLR like memory management, thread managament,
security, garbage mechanism etc.
managed code executed on fixed location in memory while
unmanaged code executes on random location in memory.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are scaffold templates in mvc?
What is the difference between ViewData, ViewBag and TempData?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
If I have multiple filters implemented, what is the order in which these filters get executed?
Briefly describe the roles of clr in .net framework?
What is ViewData and TempData in ASP.Net MVC?
what is code first approach?
What is object service? : Entity framework
Explain what is routing?
What is difference between viewbag and viewdata and tempdata?
Can we free memory explicitly without waiting for garbage collector to free the memory in .net compact framework?
Give an example for authorization filters in an asp.net mvc application?
When will the .net framework 3.0 be released?
What type of filter does outputcacheattribute class represents?
what is entity graph in entity framework?