ListExtensions.Contains<T>

Extension Method in ListExtensions

Declaration

public static bool Contains<T>(this List<T> list, Predicate<T> predicate)

Description

Checks if the list contains an item that satisfies a predicate.

Type Parameters

TThe type of the list.

Parameters

listThe list to search in.
predicateThe predicate to use.

Returns

boolTrue if any item satisfies the predicate.