---
title: "What is the role of JIT(Just In Time) in .NET Framework?"  
description: "What is the role of JIT(Just In Time) in .NET Framework?"  
author: "Anonymous User"  
published: 2010-10-20  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/63/what-is-the-role-of-jit-just-in-time-in-dot-net-framework  
category: ".net"  
tags: [".net"]  
reading_time: 1 minute  

---

# What is the role of JIT(Just In Time) in .NET Framework?

JIT is a compiler that converts MSIL to native code. The native code consists of hardware specific instructions that can be executed by the CPU.\
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.\

## Answers

### Answer by Pushpendra Singh

JIT is a compiler that converts MSIL to native code. The native code consists of hardware specific instructions that can be executed by the CPU.\
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.\


---

Original Source: https://www.mindstick.com/interview/63/what-is-the-role-of-jit-just-in-time-in-dot-net-framework

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
