I want to decompile many assemblies in C #. I found several tools that do visual decompile. However, I was wondering if there is a tool that can decompile from the command line (similar to ildasm /OUT ).
The motivation is that there are 100+ assemblies, and I do not want to open them and save as a .cs file. The .NET Reflector seems to have batch loading assemblies, but it does not have batch saving. So I was thinking of writing a script that goes through each assembly and decompiles it using a command line command.
source share