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 |
What is entity framework used for?
what is ADO.NET
What is page life cycle?
Can a view be shared across multiple controllers? If yes, how we can do that?
What is difference between shared and public
what is difference b/w .net 1.1 and .net 2.0. I need Answer in c# , asp.net and ado.net Level.Like c#1.1 and c#.1.1 , ado.net1.1 and ado.net2.0 and asp.net1.1 and asp.net2.0
Possible ways to prevent xss attacks on mvc application?
In Server how to check whether model has error or not in ASP.Net MVC
Can I remove .net framework?
Explain JSON Binding?
What are actions in asp.net mvc?
Can you handle all button click events at once in a form? Give coding.