What is the role of JIT(Just In Time) in .NET Framework?
2607
20-Oct-2010
Pushpendra Singh
30-Oct-2010Rather than converting the entire MSIL (in a portable executable[PE]file) to native code, the JIT converts the MSIL as it is needed during execution. This converted native code is stored so that it is accessible for subsequent calls.