Common Language Runtime: Difference between revisions
imported>Artoria2e5 ~ |
.NET no longer follows semantic versioning since .NET Core |
||
| Line 29: | Line 29: | ||
|} | |} | ||
During the transition from legacy .NET technologies like the .NET Framework and its proprietary runtime to the community-developed [[.NET Core]], the CLR was dubbed '''CoreCLR'''.<ref>{{Cite web|title=Understanding .NET Framework, .NET Core, .NET Standard And Future .NET|url=https://www.c-sharpcorner.com/blogs/understanding-net-framework-net-core-and-net-standard-and-future-net|access-date=February 1, 2021|website=www.c-sharpcorner.com|language=en}}</ref> | During the transition from legacy .NET technologies like the .NET Framework and its proprietary runtime to the community-developed [[.NET Core]], the CLR was dubbed '''CoreCLR'''.<ref>{{Cite web|title=Understanding .NET Framework, .NET Core, .NET Standard And Future .NET|url=https://www.c-sharpcorner.com/blogs/understanding-net-framework-net-core-and-net-standard-and-future-net|access-date=February 1, 2021|website=www.c-sharpcorner.com|language=en}}</ref> The term CLR today may refer to either the '''.NET Framework CLR''' or '''Core CLR'''<ref>{{cite web|title=.NET Glossary - CLR|url=https://learn.microsoft.com/en-us/dotnet/standard/glossary#clr|access-date=October 17, 2025|website=Microsoft Learn|quote=The exact meaning depends on the context. Common Language Runtime usually refers to the runtime of .NET Framework or the runtime of .NET.}}</ref> | ||
Since .NET 5, the runtime for .NET follows a yearly release cadence, releasing a new version every November<ref>{{cite web|title=.NET and .NET Core official support policy|url=https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core#cadence|access-date=October 17, 2025|website=Microsoft .NET Support|quote=A new major release of .NET is published every year in November...}}</ref> | |||
==See also== | ==See also== | ||
Latest revision as of 14:38, 17 October 2025
Template:Short description Template:Multiple Template:Program execution The Common Language Runtime (CLR), the virtual machine component of Microsoft .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 in 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]
| 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 |
During the transition from legacy .NET technologies like the .NET Framework and its proprietary runtime to the community-developed .NET Core, the CLR was dubbed CoreCLR.[3] The term CLR today may refer to either the .NET Framework CLR or Core CLR[4]
Since .NET 5, the runtime for .NET follows a yearly release cadence, releasing a new version every November[5]
See also
References
External links
- Components of Common Language Runtime
- Components of CLR
- Overview of the .NET Framework 4.0
- .NET Framework Conceptual Overview
Template:.NET Framework Template:Common Language Infrastructure