1

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?

BanksySan
  • 27,362
  • 33
  • 117
  • 216

1 Answers1

2

ILDasm does work, if you launch it from the command line (ILDAsm myModule.netmodule) rather than from the GUI.

BanksySan
  • 27,362
  • 33
  • 117
  • 216