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.
BY Best Interview Question ON 12 Feb 2019