I have a folder (possibly, with nested sub-folders) containing thousands of files, some of them are DLLs, and some of those DLLs are .NET assemblies. I need to find all assemblies containing types/members matching a certain pattern (e.g. "*Collection"
, or "Create*"
). What is the best (fastest) way to do this?
It is OK to suggest open-source libraries as long as their usage does not require to open my source code.