Please Explain What is the role of JIT compiler in .net framework.
What is the role of JIT compiler in .net framework.
928
11-Dec-2019
Nishi Tiwari
12-Dec-2019JIT stands for Just-in-Time. It is an important part of common language runtime (CLR) in .Net Framework which manages the execution of codes written in any programming languages. JIT compiler converts the Microsoft intermediate language (MSIL) code of an assembly to the CPU native code when it is required during execution and that’s why its name is given just-in-time, if it not needed then it will do nothing with the MSIL code.