As the title reads, is there a way using the ReSharper search pattern to find all instances of .First() that contains a condition, ignoring .First()?
The motivation for this search is in response to question
Why is LINQ .Where(predicate).First() faster than .First(predicate)?
We would like to see how many times we're using First() with a condition. The search will be extended to look for .FirstOrDefault().