Jun 10, 2014

CLR (Common Language Runtime) Virtual Machine Component of .NET

The Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework and is responsible for managing the execution of .NET programs. In a process known as just-in-time compilation, the compiled code is converted into machine instructions that, in turn, are executed by the computer's CPU.[1] The CLR provides additional services including memory management, type safety and exception handling. All programs written for the .NET framework, regardless of programming language, are executed by the CLR. It provides exception handling, garbage collection and thread management. CLR is common to all versions of the .NET framework.









The CLR is Microsoft's implementation of the Virtual Execution System (VES) as defined in the Common Language Infrastructure (CLI) standard, initially developed by Microsoft itself. The Common Language Infrastructure specification is now defined by a public standard.

Versions of the Common Language Run-time

The version number of the .NET Framework doesn't necessarily correspond to the version number of the CLR it includes. The following table shows how the two version numbers correlate.


.NET Framework version
Includes CLR version
1.0
1.0
1.1
1.1
2.0
2.0
3.0
2.0
3.5
2.0
4
4
4.5 (including 4.5.1 and 4.5.2)
4

No comments: