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
Which is the root namespace for fundamental types in .net framework?
What is the advantage of using asp.net routing?
Explain what is the difference between view and partial view?
Which approach provides better support for test driven development - asp.net mvc or asp.net webforms?
What is objectcontext? : Entity framework
Explain JSON Binding?
What is difference between razor and web form engine?
Explain how you can send the result back in JSON format in MVC?
What are the benefits of .net framework?
What is definingquery in entity framework? : Entity framework
Can you use Razor code in Javascript in ASP.Net MVC?
Are there any parts of the .net framework 3.0 that only work on windows vista?
What are Non Action methods in ASP.Net MVC?
Explain the role of assembly in the .net framework.
what do you mean by table-per-hierarchy?