Can anyone tell me breif about JIT in .NET Framework.Like when exactly it gets instatiated?Is is compiler or a debugger?If a piece of MSIL code get copied from one machine to another and with JIT, is it possible to generate .exe?How to get piece of MSIL code from one pc to another one?Thanks.

Questions by bijal   answers by bijal

Showing Answers 1 - 9 of 9 Answers

deepak

  • Nov 9th, 2006
 

  In .net JIT(just in time) work like a compiler when we are doing programming JIT is run in background and if we do any mistake it inform suddenly and we are able to correct them at current time which is saving our time.JIT is a very good feature of .net

  Was this answer useful?  Yes

sandeep gaadhe

  • Nov 13th, 2006
 

JIT is a comiler in .Net that is responsible for converting IL code into native cpu instruction.when a IL code is given then JIT checks for the metadata of the code and using this metadata converts IL in CPU instructions.These CPU instruction is stored in a dynamically allocated memory.Once this is done then JIT checks back to internal data structure of the IL code and replaces the addresses with the data addresses.

 

regards

sandeep gaadhe

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions