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
What is the use of session state and application state and difference between them?
Define the term Web Garden?
Which asp.net objects encapsulate the state of the client and the browser?
how can create login from create and written conde in asp.net
Which is better viewstate or session?
Should I delete cookies?
Can we have multiple master pages in asp net?
What is a viewstate?
What is the concept of view state in asp.net?
What is _dopostback in asp net?
What is use of <% %> in asp.net?
What is the difference between session object and application object?
Can we use a static function with a non-static variable?
Explain one critical mapping?
How does cookies work in asp net?