Answer Posted / 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 |
Post New Answer View All Answers
How many types of transactions are there in com + .net ?
What are the different.net tools which you used in projects?
Explain how viewstate is being formed and how it's stored on client in .net?
What is the difference between constants and read-only variables?
Describe the Managed Execution Process?
Explain the process of compilation in .NET?
What is the difference between a namespace and assembly name in .net?
Why do we use the “using” statement?
What is the use of activex control in .net?
What is the use of Treeview control?
What's wrong with a line like this? Datetime.parse(mystring);
How does cas works?
What is strong-typing versus weak-typing? Which is preferred?
How is .net able to support a lot of languages?
What is a variable of implicit type and what is its scope?