1.

What is JIT in VB.Net also explain its types?

Answer»

JIT in VB.Net is also called as Just in Time. It is nothing but a compiler that plays a PART during runtime EXECUTION. In VB.Net, we have three types of JIT:

  • Pre-JIT: It compiles MSIL CODE into native code in one compilation cycle.
  • Econo-JIT: It compiles methods that are called at runtime and REMOVES them from memory after execution.
  • Normal JIT: It compiles methods that are only called at runtime.


Discussion

No Comment Found