What is the difference between managed and unmanaged code?
*******
Answer Posted / alb.shah
A code that executed under the instructions of CLR is called
managed code.
A code that execute without the instruction of CLR is called
unmanaged code.
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 ? | 9 Yes | 1 No |
Post New Answer View All Answers
Explain a program using razor view engine to create a simple application? : asp.net mvc
What is variable and constant in .net programming language?
What is the difference between asp.net and mvc?
Where can I get information on cookies in asp.net?
I’m having some trouble with cas. How can I diagnose my problem?
What are query strings used for?
What is the difference between user control and custom control?
Explain the difference between page.registerclientscriptblock and page.registerstartupscript?
Explain about consistent programming model in the .NET framework?
What is Web API Routing?
Does google crawl redirects?
What is the difference between Session and response.Redirect?
What permissions do asp.net applications posses by default?
Explain how do you validate the controls in an asp .net page?
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?