What does CLR do after the IL is generated and machine
language is generated .Will it look for main method ?
Answer Posted / priya
Once IL and Machine Language is generated, by using CLR, JIT
(just in time) compiles the IL files, where it converts the
code to Operating System understandable.
CLR translates this MSIL code into an executable code when
the program is executed making the program to run in any
environment for which the CLR is implemented.
When .Net program is executed CLR activates the JIT
compiler, where JIT compiler converts MSIL code into native
code (OS understandable).
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Do you know about the new features in asp.net mvc 4 (asp.net mvc4)?
Is it possible to share a view across multiple controllers?
How to use Jquery Plugins in ASP.Net MVC validation?
What happens when I install the .net framework 3.0? How can I upgrade if I already have the .net framework 2.0 installed?
Explain the methods used to render the views in ASP.Net MVC?
What is representational state transfer (rest) mean?
What is routeconfig.cs in mvc 4?
What are bundling & minification features in asp.net mvc 4?
What are the components of the .net framework.
What is meant by tempdata in mvc?
Will there be a .net compact framework 3.0 release with release of .net framework 3.0?
What is main objective of asp.net mvc 4 or what is new in mvc4 ?
What is code first? : Entity framework
How to change the action name in mvc?
What is meant by viewdata?