What does CLR do after the IL is generated and machine
language is generated .Will it look for main method ?
Answer / 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 |
Can any particular component of .net framework 3.0 be removed?
Can we free memory explicitly without waiting for garbage collector to free the memory in .net compact framework?
what is minimum requirement for entity framework applications to run?
What are authentication filters in web api?
If u have an Empty Xml file and u have to bind dataset data to empty xml file? if u have an empty dataset u have to bind xml file data to it?
What is the role of the jit compiler in .net framework?
What are the different types of filters, in an asp.net mvc application?
What is controllercontext?
What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?
What are the components of the .net framework.
What is the difference between managed and unmanaged code?
How we can multiple submit buttons in ASP.Net MVC