我了解如何使用委托,并且可以使用 lambda 表达式来使用谓词。我已经到了想要实现一个使用谓词作为参数的方法并且无法弄清楚如何引用谓词以在我的集合中查找匹配项的地步:
private static T FindInCollection<T>(ICollection<T> collection, Predicate<T> match)
{
foreach (T item in collection)
{
//So how do I reference match to return the matching item?
}
return default(T);
}
然后我想使用类似的东西来引用它:
ICollection<MyTestClass> receivedList = //Some list I've received from somewhere else
MyTestClass UsefulItem = FindInCollection<MyTestClass>(receivedList, i => i.SomeField = "TheMatchingData");
如果有人可以给我一个解释或指向我关于谓词实现的参考,我将不胜感激。那里的文档似乎都与传递谓词有关(我可以做得很好),而不是实际实现使用它们的功能......
谢谢