adspace


What is msil, il?

Answer Posted / Devendra Kumar

MSIL (Microsoft Intermediate Language) and IL (Intermediate Language) are terms used to refer to an intermediary representation of .NET Framework source code. MSIL is a platform-independent, low-level programming language that allows .NET programs to be executed on different operating systems. IL code is generated by the compiler from the original high-level programming languages like C# and VB.NET and is then JIT (Just-In-Time) compiled into native machine code before execution.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143