Answer Posted / guest
Before Microsoft intermediate language (MSIL) can be
executed, it must be converted by a .NET Framework
just-in-time (JIT) compiler to native code, which is
CPU-specific code that runs on the same computer
architecture as the JIT compiler.
Rather than using time and memory to convert all the MSIL in
a portable executable (PE) file to native code, it converts
the MSIL as it is needed during execution and stores the
resulting native code so that it is accessible for
subsequent calls.
The runtime supplies another mode of compilation called
install-time code generation. The install-time code
generation mode converts MSIL to native code just as the
regular JIT compiler does, but it converts larger units of
code at a time, storing the resulting native code for use
when the assembly is subsequently loaded and executed.
As part of compiling MSIL to native code, code must pass a
verification process unless an administrator has established
a security policy that allows code to bypass verification.
Verification examines MSIL and metadata to find out whether
the code can be determined to be type safe, which means that
it is known to access only the memory locations it is
authorized to access.
| Is This Answer Correct ? | 43 Yes | 10 No |
Post New Answer View All Answers
what is use of entity container?
Does .NET Framework support SAX?
What is the difference between model view and controller?
Explain covariance and contra-variance in .net framework 4.0. Give an example for each.
What is the use of view model in asp.net mvc?
What is RouteConfig.cs in ASP.Net MVC 4?
What does a viewmodel do?
What is the use of the default route {resource}.axd/{*pathinfo} ?
What is the difference between renderaction and renderpartial?
What are the components required to create a route in mvc?
When using aspx view engine, to have a consistent look and feel, across all pages of the application, we can make use of asp.net master pages. What is asp.net master pages equivalent, when using razor views?
What you mean by routing in mvc?
List the new features added in .net framework 4.0.
How does servicing work for the .net framework 3.0?
Explain Bundle.Config in ASP.Net MVC4?