Click or drag to resize

IEnumerableExtensionsAny Method (FuncObject, Boolean)

Determines whether any element of a sequence satisfies a condition.

Namespace:  Cauldron.Collections
Assembly:  Cauldron.Collections (in Cauldron.Collections.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public bool Any(
	Func<Object, bool> predicate
)

Parameters

predicate
Type: SystemFuncObject, Boolean
A function to test each element for a condition.

Return Value

Type: Boolean
True if any elements in the source sequence pass the test in the specified predicate, otherwise false
See Also