MonobjcMonobjc Documented Class Library
FindAll<(Of <(<'T>)>)> Method (match)
NamespacesMonobjc.FoundationNSArrayFindAll<(Of <<'(T>)>>)(Predicate<(Of <<'(T>)>>))
Retrieves all the elements that match the conditions defined by the specified predicate
Declaration Syntax
C#Visual BasicVisual C++
public virtual List<T> FindAll<T>(
	Predicate<T> match
)
where T : class, IManagedWrapper
Public Overridable Function FindAll(Of T As {Class, IManagedWrapper}) ( _
	match As Predicate(Of T) _
) As List(Of T)
public:
generic<typename T>
where T : ref class, IManagedWrapper
virtual List<T>^ FindAll(
	Predicate<T>^ match
)
Generic Template Parameters
T
The parametric type
Parameters
match (Predicate<(Of <(<'T>)>)>)
The [!:Predicate{T}] delegate that defines the conditions of the elements to search for.
Return Value
A [!:List{T}] containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty [!:List{T}].
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)