What does JIT do in .Net?
JIT is used for deployment, versioning, and security, and forces the computer's processor to execute the native machine code. Reference: Compilation by the JIT compiler
JIT compiles to C# code using .NET environment properties.
JIT translates the IL code to an assembly code and uses the CPU architecture of the target machine to execute a .NET application.
JIT is used for deployment, versioning, and security.