문제

I have a List<> of objects. I wanted to use the method Find(Predicate match), but i did not find it in wp7.

What can i use in alternative to this method?

thank you for help.

도움이 되었습니까?

해결책

You can use Linq instead. The equivalent of Find in Linq is FirstOrDefault:

yourList.FirstOrDefault(predicate);

Just make sure you have added using System.Linq; on top of your file, or you won't find the FirstOrDefault method.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top