Which tool is used to generate PE files from MSIl code?
-
ildasm
-
ilasm
-
capol
-
resgen
B
Correct answer
Explanation
ILASM (IL Assembler) converts MSIL (Microsoft Intermediate Language) code into PE (Portable Executable) files. This is the opposite of ILDASM, which disassembles .NET assemblies back to MSIL. ILASM is used when you need to assemble IL code into an executable format.