Jump to content

Common Language Runtime: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
top: fix/be explicit and link about the managed code layer as there's two separate compilation steps so let's help readers distinguish them
m Include .NET Framework 4.8 in version table
Line 27: Line 27:
|-
|-
|4
|4
|[[.NET Framework version history#.NET Framework 4|4]], [[.NET Framework version history#.NET Framework 4.5|4.5]], [[.NET Framework version history#.NET Framework 4.6|4.6]], [[.NET Framework version history#.NET Framework 4.7|4.7]]
|[[.NET Framework version history#.NET Framework 4|4]], [[.NET Framework version history#.NET Framework 4.5|4.5]], [[.NET Framework version history#.NET Framework 4.6|4.6]], [[.NET Framework version history#.NET Framework 4.7|4.7]], [[.NET Framework version history#.NET Framework 4.8|4.8]]
|}
|}



Revision as of 04:16, 24 April 2019

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.[1] The CLR provides additional services including memory management, type safety, exception handling, garbage collection, security and thread management. All programs written for the .NET framework, regardless of programming language, are executed by the CLR. All versions of the .NET framework include CLR. The CLR team was started June 13, 1998.

CLR implements the Virtual Execution System (VES) as defined in the Common Language Infrastructure (CLI) standard, initially developed by Microsoft itself. A public standard defines the Common Language Infrastructure specification.[2]

The CLR converts CIL (Common Intermediate Language) to native code.
Overview of the Common Language Runtime release history[1]
CLR version .NET version
1.0 1.0
1.1 1.1
2.0 2.0, 3.0, 3.5
4 4, 4.5, 4.6, 4.7, 4.8

See also

References

  1. ^ a b "Common Language Runtime (CLR)". MSDN Library. Retrieved 14 November 2013.
  2. ^ "ECMA C# and Common Language Infrastructure Standards". Visual Studio Developer Center. Retrieved 14 November 2013.