Nikita
Said..
When the program is executed the CLr activates JIT compiler ,inturn this JIT converts the MSIL Code (Non Executable) to Native Code(Executable) on demand basis as each part of Program is needed.
Types of JIT (just in time) Compilers are as stated below :
- PRE JIT : It Compiles complete source code to native caode In a single Compilation.
- ECONO JIT : It compiles only those methods that are called at Runtime Or it Compiles code part by part freeing when required.
- NORMALE JIT : It compiles only those methods that are called at Runtime and are stored in cache Or it Compiles only that part of code when called and places in cache.
I think default JIt is PRE Jit .
Thanks