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?
A:
.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.
Oded
2010-04-19 07:48:05
Actually, the content is compressed byte code which != MSIL. You still need to 'convert' it with ILDASM.
leppie
2010-04-19 08:09:30