MonobjcMonobjc Documented Class Library
FindIndex<(Of <(<'T>)>)> Method (match)
NamespacesMonobjc.FoundationNSArrayFindIndex<(Of <<'(T>)>>)(Predicate<(Of <<'(T>)>>))
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire NSArray.
Declaration Syntax
C#Visual BasicVisual C++
public int FindIndex<T>(
	Predicate<T> match
)
where T : class, IManagedWrapper
Public Function FindIndex(Of T As {Class, IManagedWrapper}) ( _
	match As Predicate(Of T) _
) As Integer
public:
generic<typename T>
where T : ref class, IManagedWrapper
int FindIndex(
	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 element to search for.
Return Value
The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, �1.
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)