Saved Bookmarks
| 1. |
Explain Microsoft Intermediate Language |
|
Answer» MSIL is the Microsoft Intermediate LANGUAGE, which provides instructions for calling methods, MEMORY handling, storing and INITIALIZING values, exception handling, and so on. The instructions provided by MSIL are platform-independent and are GENERATED by the language-specific compiler from the source code. JIT compiler compiles the MSIL into MACHINE code based on the requirement. |
|