Multiple choice technology programming languages

Which program will you use to assemble a program written in IL

  1. ilasm

  2. ildasm

  3. clr

  4. NONE

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

ilasm (IL Assembler) is the tool that converts IL (Intermediate Language) code into executable portable executable (PE) format. ildasm is the reverse: it disassembles .NET assemblies into IL code. The CLR (Common Language Runtime) executes the assembled code but does not assemble it.