Whats MSIL, and why should my developers need an
appreciation of it if at all?

Answers were Sorted based on User's Feedback



Whats MSIL, and why should my developers need an appreciation of it if at all?..

Answer / sunayana

MSIL is the Microsoft Intermediate Language. All .NET
compatible languages will get converted to MSIL.

Is This Answer Correct ?    6 Yes 1 No

Whats MSIL, and why should my developers need an appreciation of it if at all?..

Answer / sudhir sheoran

MSIL stands for Microsoft Intermediate Language.
Code written in any programming language is converted
to MSIL using corresponding compilers.
E.g: c++ used c++ compiler to convert code into MSIL.

At run time CLR converts this MSIL into
machine instructions(Native Code)

Is This Answer Correct ?    0 Yes 0 No

Whats MSIL, and why should my developers need an appreciation of it if at all?..

Answer / 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

More ASP.NET Interview Questions

What is redirecting behavior?

0 Answers  


Is it possible to disable the minimized icon of a popup window using window.open. Not using iframe concept?

3 Answers   AFAS, Take United,


Explain what the contents of cookie?

0 Answers  


How will you load dynamic assembly?

0 Answers  


What is the exact purpose of http handlers?

0 Answers  






What are the differnt types of handler in ASP.NET?

0 Answers   Sans Pareil IT Services,


What is the difference between response.redirect and server.transfer, how to choose one among the other?

3 Answers   247Customer,


What is the Difference B/W Finalize() and Dispose() in .Net?

12 Answers   HCL, IBM,


What are the asp.net 2.0 features?

0 Answers  


how can you bind data from dataset to XML file

2 Answers   LG Soft,


What are two ways that you can set the minimum and maximum values for a rangevalidator? When would you use each technique?

1 Answers  


What do you mean by authentication?

0 Answers  


Categories