Google News
logo
.Net - Interview Questions
What does JIT stand for in .NET?
JIT stands for Just in Time. It is a compiler that is used to convert intermediate code into native code easily.
 
In .NET, during execution, the code is converted into the native language, also called the byte code. This is processed by the CPU, and the framework helps with the conversion.
Advertisement