Home »

What is IL?

Question ListCategory: ASP.NETWhat is IL?
alisataylore190 author asked 8 years ago
1 Answers
jully882 author answered 8 years ago

IL = Intermediate Language. Also known as MSIL (Microsoft IntermediateLanguage) or CIL (Common Intermediate Language). All .NET source code
(of any language) is compiled to IL during development. The IL is then
converted to machine code at the point where the software is installed, or
(more commonly) at run-time by a Just-In-Time (JIT) compiler.

Please login or Register to Submit Answer