Visual Studio: search only without code

Is there a way to limit the search or search to just no frames?
(Perhaps using regex would be a good example)

+8
visual-studio visual-studio-2010
source share
1 answer

Suppose, if you need to search for all occurrences of inconsistent text "VPEntity", try using the following regular expression in "Find in Files" after selecting the option "Use Regus"

^((?!//|/\*).)*VPEntity*$ 

Hope this works for you.

+3
source share

All Articles