Hi all,
Is it possible to compile a .cs directly in x86 code ? I mean, I want to observe what happened with IDA Pro, so I didn't want IL code but asm code.
Thanks
Hi all,
Is it possible to compile a .cs directly in x86 code ? I mean, I want to observe what happened with IDA Pro, so I didn't want IL code but asm code.
Thanks
IDA won't load native parts from NGEN'd assemblies, unfortunately. The only way I found was to use the Visual Studio debugger.
If you're not interested specifically in the Microsoft .NET framework internals, but in any other JIT as well, you can play with mono --aot, which produces normal PE or ELF executables (and even the readable assembler sources).