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
What is an asynchronous controller in asp.net mvc?
What happens when I install the .net framework 3.0? How can I upgrade if I already have the .net framework 2.0 installed?
Can I add mvc testcases in visual studio express?
List out few different return types of a controller action method?
Explain ASP.NET MVC Identity and Security?
Is dapper better than entity framework?
What are Code Blocks in Views?
What is the difference between windows vista and .net framework 3.0 ?
What is route config?
Explain the advantages of dependency injection (di) in asp.net mvc?
What is entitytypes? : Entity framework
What is Dependency Injection in ASP.Net MVC
Explain test driven development (tdd) ?
how do you truncate a table using entity data model?
How does work clr?