C # command line decompiler

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.

+4
source share
1 answer

If you are looking for a program that generates C # build code, Jon Gallant recently posted a blog post about this using TeleDrik's JustDecompile. There are several assemblies that you reference, and then you can control code generation without a user interface.

+2
source

Source: https://habr.com/ru/post/1380846/


All Articles