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 |
Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Qu)I Got Exception in "try" block. Which "catch" statement (i.e. 1st catch or 2nd catch ) catches the exception and Why???
What's an interface
What are the types of assemblies
What is entity sql? : Entity framework
How do I change the permission set for a code group
What happens when you encounter a continue statement inside the for loop ?
What are the 2 popular asp.net mvc view engines?
What does 'managed' mean in the .NET context
What is the meaning of unobtrusive javascript? Explain us by any practical example.
Explain dependency resolution?
What is .net core framework?
What is the 'page life cycle' of an ASP.NET MVC?