I can't find any FindAll method in my List, how can i select objects from the List that respond to a specific criteria, without using the old iterating method?
List<oPage> mylist = new List<oPage>();
my oPage class has a property called Title of type string.
I added a few items of oPage inside myList.
now i want to select all items inside mylist that have a title containing the word 'abc' and return all those items in a IEnumerable.
how is it possible?
Thanks for your help.