What is the role of JIT(Just In Time) in .NET Framework?
Ask by Anonymous User
Updated 18 Sep 2020
Rather 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.