The Common Language Runtime (CLR)
正文
印象
Figure 1-1. .NET Framework
Figure 1-2. Common Language Runtime functions
定义
The Common Language Runtime (CLR), the virtual machine component of Microsoft's .NET framework, manages the execution of .NET programs.
作用
- Just-in-time compilation converts the managed code (compiled intermediate language code), into machine instructions which are then executed on the CPU of the computer.
- The CLR provides additional services including memory management, type safety, exception handling, garbage collection, security and thread management.