Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
The Microsoft Intermediate Language (MSIL) is an old name of the Common Intermediate Language (CIL) that was used in the bete releases.
(CLI) previously known as (MSIL) is the lowest-level human-readable programming languagede fined by the Common Language Infrastructure (CLI) specification and is used by the .NET Framework and Mono Languages which target a CLI-compatible runtime environment compile to CIL, which is assembled into an object code that has a bytecode-style format. CIL is an object-oriented assembly language, and is entirely stack-based. Its bytecode is translated into native code or — most commonly — executed by a virtual machine
(IL)Intermediate Language is also known as MSIL (Microsoft Intermediate Language) or CIL(Common Intermediate Language). All .NET source code is compiled to IL. This IL is thenconverted to machine code at the point where the software is installed, or at run-time by a Just-In-Time (JIT) compiler.