Microsoft Wiki

Be sure to join our wiki's Discord server by clicking here
Also follow our wiki's Twitter by clicking here

READ MORE

Microsoft Wiki
Register
Advertisement
File:CLR diag.svg

The Common Language Runtime (CLR) is a core component of Microsoft's .NET initiative. It is Microsoft's implementation of the Common Language Infrastructure (CLI) standard, which defines an execution environment for program code. In the CLR, code is expressed in a form of bytecode called the Common Intermediate Language (CIL, previously known as MSIL—Microsoft Intermediate Language).

Developers using the CLR write code in a language such as C# or VB.NET. At compile time, a .NET compiler converts such code into CIL code. At runtime, the CLR's just-in-time compiler converts the CIL code into code native to the operating system. Alternatively, the CIL code can be compiled to native code in a separate step prior to runtime by using the Native Image Generator (NGEN). This speeds up all later runs of the software as the CIL-to-native compilation is no longer necessary.

Although some other implementations of the Common Language Infrastructure run on non-Windows operating systems, Microsoft's implementation runs only on Microsoft Windows operating systems.

Services[]

The CLR allows programmers to ignore many details of the specific CPU that will execute the program. It also provides other important services, including the following:

  • Memory management
  • Thread management
  • Exception handling
  • Garbage collection
  • Security

See also[]

  • Dynamic Language Runtime, built on top of the CLR

References[]

  1. REDIRECT Template:.NET

eu:CLR ko:공통 언어 런타임 hu:Common Language Runtime nl:Common Language Runtime ja:共通言語ランタイム pt:Common Language Runtime sv:Common Language Runtime th:Common Language Runtime

Advertisement