In VS2010, what would be the regular expression for 'Find in Files' to search for all source files that contain two separate words regardless of line breaks?
For Example I want to find any source file that contains 'This' and 'That'.
I tried something like this but it did not work:
((This).* \n* .*(That))