ListExtensions.ContainsAll<T>
Extension Method in ListExtensions
Declaration
public static bool ContainsAll<T>(this List<T> list, Predicate<T> predicate)
Description
Checks if the list contains all items that satisfy a predicate.
Type Parameters
T | The type of the list. |
Parameters
list | The list to search in. |
predicate | The predicate to use. |
Returns
bool | True if all items satisfy the predicate. |