What is the difference between managed and unmanaged code?
Answers were Sorted based on User's Feedback
Answer / anil
Program written in any .net compatible language will go for
compilation for 2times.
In the first compilation of the program, the language
compiler will generate MSIL code which is the managed code. &
the code generated after the second execution ie by the CLR
is called unmanaged code which is machine understandable and
not by the user.
| Is This Answer Correct ? | 14 Yes | 19 No |
Answer / prabhat
Managed code are execute by CLR,
Unmanaged code are use wrapper class,
| Is This Answer Correct ? | 8 Yes | 15 No |
In .net compact framework, can we free memory explicitly without waiting for garbage collector to free the memory?
What is entitytypes? : Entity framework
Why doesn't the .NET runtime offer deterministic destruction
What is an asynchronous controller in asp.net mvc?
Which are the abstract classes available under system.xml namespace
What is ViewStart Page in ASP.Net MVC?
Is it possible to share a view across multiple controllers?
what are background threads? give ex?
What is global assembly cache
What happens when you encounter a continue statement inside the for loop ?
How can I stop my code being reverse-engineered from IL
How we can invoke child actions in ASP.Net MVC?