adspace


What does jit compilation do in .net?

Answer Posted / Reenu Saini

Just-In-Time (JIT) compilation is a feature of the Common Language Runtime (CLR) that compiles .NET code at runtime into native machine code specific to the target platform. This allows for faster execution of the compiled code and reduces startup times compared to interpreted languages, as well as enabling .NET applications to run on various platforms without the need for recompilation.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1140