How can I analyse a .NET module?
I know I can open it in a hex reader and work from there, but it's not exactly a friendly way of going about things.
Is there an ILDasm-like tool available?
How can I analyse a .NET module?
I know I can open it in a hex reader and work from there, but it's not exactly a friendly way of going about things.
Is there an ILDasm-like tool available?
ILDasm does work, if you launch it from the command line (ILDAsm myModule.netmodule
) rather than from the GUI.