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.