What is MSIL code ?
Answers were Sorted based on User's Feedback
Answer / vara prasad
This is an acronym for Microsft Intermediate Language.
In .net code that a developers develops will be complied in
to MSIL code by the respective compilers and this code will
be targeted towards the CLR which inturn contains JIT
Compilers .This MSIL code will be converted in to the
machine understandable code by JIT compiler.
| Is This Answer Correct ? | 77 Yes | 12 No |
Answer / kranthi kumar.j
When the code is compiled, the compiler translates your code
into Microsoft intermediate language (MSIL). The common
language runtime includes a JIT compiler for converting this
MSIL then to native code.
MSIL contains metadata that is the key to cross language
interoperability. Since this metadata is standardized across
all .NET languages, a program written in one language can
understand the metadata and execute code, written in a
different language. MSIL includes instructions for loading,
storing, initializing, and calling methods on objects, as
well as instructions for arithmetic and logical operations,
control flow, direct memory access, exception handling, and
other operations.
| Is This Answer Correct ? | 69 Yes | 7 No |
Answer / dhana
the extension msil code is microsoft intermediate language
code,when ever our applicatation compile ,msil will be
generated,it having the metadata infromatin.when jit
compilter it convert to mechine code.
| Is This Answer Correct ? | 11 Yes | 14 No |
What is an exe and a dll?
What is connection pooling and how do you make your application use it?
Do you know what is .net standard?
What is deferred execution vs. Immediate execution in linq?
How can I get at the win32 api from a .net program?
Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component
What is .net code security?
What are the types of jit?
How big is the datatype int in .net?
What is portable executable (PE)?
What does SCM do?
Is there a way to suppress the finalize process inside the garbage collector forcibly in .net?