Search for a string in a DLL collection

We have several DLLs in one directory. Most, but not all, are only C ++ DLL resources. These DLLs can be opened in Visual Studio for a "visual" inspection (you can see the "Row Table").

Here's the script, we are looking for a specific string, but we do not know which DLL contains the string. Is there a tool we can use that will do a string search in a DLL?

Thank!

+3
source share
2 answers

I have just successfully used .NET Reflector 6 to find a string (using Ctrl+S) in a list of loaded DLLs.

( ++), , .

+2

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


All Articles