Disassemble .NET into C# code

  • Thread starter Thread starter Martijn Mulder
  • Start date Start date
M

Martijn Mulder

Hello,

I know 'Reflector's ability to disassemble part of my executable into nicely
formatted C# code, but it does so only one file at the time.

I am looking for a way to have my whole assembly (about 120 files)
disassembled from the .exe file into a (big) .cs file. Can I do it with
Reflector or do I need another (command line) tool?
 
Hello,

I know 'Reflector's ability to disassemble part of my executable into nicely
formatted C# code, but it does so only one file at the time.

I am looking for a way to have my whole assembly (about 120 files)
disassembled from the .exe file into a (big) .cs file. Can I do it with
Reflector or do I need another (command line) tool?
There's a plugin for Reflector:
http://www.denisbauer.com/NETTools/FileDisassembler.aspx

That will not do the entire assembly into one big .cs file, but it will
do the entire assembly at once, and create a project file to go with it.

-Adam
 
Back
Top