How I can find all extension methods in solution?
How I can find all extension methods in solution ? If I were doing it I would search all files for the string "( this " -- your search string may differ based on your formatting options. EDIT : After a little bit of experimentation, the following seems to work for me with high precision using "Find in Files" (Ctrl-Shift-F) Search string: " \( this [A-Za-z] " (minus quotes, of course) Match case: unchecked Match whole word: unchecked Use: Regular Expressions Look at these file types: "*.cs" I'd look at the generated assemblies using reflection; iterate through the static types looking for