When we compile .net code we don't know in what enviroment it will run.So it is converted into machine independent intermediate language called IL.Clr converts this IL code to machine specific code using JIT compiler
Microsoft Intermediate Language(MSIL).When a .net program is compiled,compiler creates MSIL code,this code is converted according to microsoft understandable instructions without considering operating system.
Microsoft Intermediate Language(MSIL).When a .net program is compiled,compiler creates MSIL code,this code is converted according to microsoft understandable instructions without considering operating system.
Posted Jan 9, 2016, 6:48 AM
MSIL = Microsoft intermediate language
When we compile .net code it is converted into MSIL code then it is converted by CLR to machine level language.
Microsoft Intermediate Language(MSIL).When a .net program is compiled,compiler creates MSIL code,this code is converted according to microsoft understandable instructions without considering operating system.