c# - How do I find all assemblies containing type/member matching a pattern? -


i have folder (possibly, nested sub-folders) containing thousands of files, of them dlls, , of dlls .net assemblies. need find assemblies containing types/members matching pattern (e.g. "*collection", or "create*"). best (fastest) way this?

it ok suggest open-source libraries long usage not require open source code.

maybe api useful you: http://cciast.codeplex.com/

microsoft research common compiler infrastructure (cci) set of libraries , application programming interface (api) supports of functionality common compilers , related programming tools. cci used applications create, modify or analyze .net portable executable (pe) , debug (pdb) files.

or can load assembly.loadfrom(path) , call assembly.getexportedtypes()


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -