JIT 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.
Liked By
Write Answer
What is the role of JIT compiler in .net framework.
Join MindStick Community
You have need login or register for voting of answers or question.
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.