Short note on MSIL (Microsoft Intermediate Language).
#MSIL (Microsoft Intermediate Language)
- MSIL is known as Microsoft Intermediate Language. During the compile time, the compiler converts the source code into Microsoft Intermediate language (MSIL).
- MSIL is a CPU-independent set of instructions that can be efficiently converted to the native code. During the run time the common Language Runtime (CLR)'s, Just In Time (JIT) compiler converts the Microsoft Intermediate Language (MSIL) code into native code to the 0S.
- When you write your application for the .NET framework with a language such as (C# or, VB.Net shop), source code is never compiled directly into machine code instead their compiler converts your code into a special named MSIL (Microsoft Intermediate language Language).
Comments
Post a Comment