======Метод List.FindAll(Predicate)====== Извлекает все элементы, удовлетворяющие условиям указанного предиката. * **Пространство имен:** [[developers:references:system.collections.generic|System.Collections.Generic]] * **Сборка:** mscorlib (в mscorlib.dll) =====Синтаксис===== public List FindAll(Predicate match) **Параметры** * //match// * Тип: [[developers:references:system.predicate_1|System.Predicate]] * Делегат [[developers:references:system.predicate_1|Predicate]] , определяющий условия поиска элементов. **Возвращаемое значение** * Тип: [[developers:references:system.collections.generic.list_1|System.Collections.Generic.List]] * Список [[developers:references:system.collections.generic.list_1|List]] , содержащий все элементы, удовлетворяющие условиям указанного предиката, если такие элементы найдены; в противном случае — пустой список [[developers:references:system.collections.generic.list_1|List]] .