VTimeZoneCollectionFindLastIndex(Int32, PredicateVTimeZone) Method
Search for the last item that matches the conditions defined by the specified predicate between the
starting index and searching backwards to the start of the collection and return its zero-based index.
Namespace: EWSoftware.PDI.ObjectsAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public int FindLastIndex(
int startIndex,
Predicate<VTimeZone> match
)
Public Function FindLastIndex (
startIndex As Integer,
match As Predicate(Of VTimeZone)
) As Integer
public:
int FindLastIndex(
int startIndex,
Predicate<VTimeZone^>^ match
)
member FindLastIndex :
startIndex : int *
match : Predicate<VTimeZone> -> int
- startIndex Int32
- The zero-based starting index for the backwards search
- match PredicateVTimeZone
- The PredicateT delegate that defines the conditions of the match
Int32Returns the zero-based index of the last occurrence of an item that matches the conditions
defined by the predicate or -1 if nothing is found.