CLR vs JIT

前端 未结 7 1850

What is the difference between the JIT compiler and CLR? If you compile your code to il and CLR runs that code then what is the JIT doing? How has JIT compilation changed wi

相关标签:
7条回答
  • 2020-12-04 06:48

    1)while compiling the .net program,.net program code is converted into Intermediate Language(IL) code

    2)upon executing the program the Intermediate language code is converted into operating system Native code as and when a method is called; this is called JIT (Just in Time) compilation.

    0 讨论(0)
提交回复
热议问题