Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How I can find all extension methods in solution?

How I can find all extension methods in solution ?

like image 998
Đorđe Avatar asked May 13 '09 11:05

Đorđe


1 Answers

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"
like image 118
tvanfosson Avatar answered Oct 24 '22 17:10

tvanfosson