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.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
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.