Whats MSIL, and why should my developers need an
appreciation of it if at all?
Answer Posted / kirti
When compiling the source code to managed code, the compiler translates the source into Microsoft intermediate language (MSIL). This is a CPU-independent set of instructions that can efficiently be converted to native code. Microsoft intermediate language (MSIL) is a translation used as the output of a number of compilers. It is the input to a just-in-time (JIT) compiler. The Common Language Runtime includes a JIT compiler for the conversion of MSIL to native code.
Before Microsoft Intermediate Language (MSIL) can be executed it, must be converted by the .NET Framework just-in-time (JIT) compiler to native code. This is CPU-specific code that runs on the same computer architecture as the JIT compiler. Rather than using time and memory to convert all of the MSIL in a portable executable (PE) file to native code. It converts the MSIL as needed whilst executing, then caches the resulting native code so its accessible for any subsequent calls.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is session management in web application?
What language is asp.net written in?
Can you explain architecture of your project ?
how to retrieve property settings from xml .config file.
What is difference between viewstate and session state in javascript?
What is an asp.net validator? And, mention its types.
What is protected configuration?
What is the difference between executescalar and executenonquery?
What are the new features added from ASP to ASP.NET?
Why the javascript validation not run on the asp.net button but run successfully on the html button?
Explain server-side scripting and client-side scripting.
Is sql backend or frontend?
How to create a db connection at one place/page so that we can use that connection for all pages/forms/windows.what r the steps ned to be performed if question not clear,let me know
Do session use cookies in asp net?
What are session and cookies?