Yes I've seen this but I couldn't find the answer to my specific question.
Given a lambda testLambda that takes T and returns a boolean (I can make it either Predicate or Func that's up to me)
I need to be able to use both List.FindIndex(testLambda) (takes a Predicate) and List.Where(testLambda) (takes a Func).
Any ideas how to do both?