Click or drag to resize
Wizard .NET Library

EventedListTTrueForAll Method

Namespace:  System.Collections.Generic
Assembly:  AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntax
public bool TrueForAll(
	Predicate<T> match
)
Request Example View Source

Parameters

match
Type: SystemPredicateT
The PredicateT delegate that defines the conditions to check against the elements.

Return Value

Type: Boolean
true if every element in the EventedListT matches the conditions defined by the specified predicate; otherwise, false. If the list has no elements, the return value is true.
See Also