Tuesday, March 24, 2015

JIT Compilation

Dynamically compiles IL code to managed native code that is optimized for execution on a target Operating System

For optimization reasons, JIT compilation occurs only the first time a method is invoked.

The compiled native code lies in memory until process shuts down and garbage-collection takes place.

What CLR Gives to Your applications
Platform Independent
Hardware Independent
Language Independent

No comments:

Post a Comment