What does JIT compilation do in .NET?

devquora
devquora

Posted On: Feb 22, 2018

 

JIT compilation in .NET is used to execute MISL on the target device. CLR translates, while JIT loads it on the computer. The MISL is stored in .NET assembly when the developer writes codes in .NET language. The JIT compilation only derives or translates the MISL code and then utilizes CPU architecture for execution. JIT also ensures that every written code fits in the given memory space. JIT is responsible to execute the written code according to the native code of the target device. Additionally, JIT stores the code in the native language for further use.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    .NET Interview Questions

    What is .NET?

    .NET is a software development framework by Microsoft...

    .NET Interview Questions

    What are the purposes of using .NET?

    .NET is used for creating web applications, Windows mobile, and Store applications, Windows Desktop..

    .NET Interview Questions

    How is .NET able to support a lot of languages?

    .NET is equipped with Microsoft Intermediate Language (MISL) that has got codes compiled within itself...