How can I decompile a .NET DLL package into a Visual Studio project

I just need to look for bits of text in my C # code.

I already have a .NET Reflector and a File Disassembler add-in, but they just decompile a single DLL.

+6
source share
2 answers
+4
source

You can also try the dotPeek decompiler.

http://www.jetbrains.com/decompiler/

+2
source

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


All Articles