How to create MSIL files from dll/exe

2019-08-27 22:35发布

问题:

I have some .net dll's and Exe's. I need to pass MSIL files to mono project. How do i convert these Dll's to MSIL files?

回答1:

You can view the IL from the DLL or EXE by running ILDASM. There's no conversion required.



回答2:

.NET dll's and exe's are MSIL files, so you do not need to convert anything.

You can use the .NET disassembler (ildasm.exe) to see that this is indeed the case.



标签: c# mono