ImmutableList<T>.FindLastIndex 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
FindLastIndex(Int32, Int32, Predicate<T>) |
搜索与指定谓词所定义的条件相匹配的元素,并返回不可变列表中包含指定元素个数、到指定索引结束的元素范围内最后一个匹配项的从零开始的索引。 |
FindLastIndex(Predicate<T>) |
搜索与指定谓词所定义的条件相匹配的元素,并返回整个不可变列表中最后一个匹配元素的从零开始的索引。 |
FindLastIndex(Int32, Predicate<T>) |
搜索与指定谓词所定义的条件相匹配的元素,并返回不可变列表中从第一个元素到指定索引的元素范围内最后一个匹配项的从零开始的索引。 |
FindLastIndex(Int32, Int32, Predicate<T>)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
搜索与指定谓词所定义的条件相匹配的元素,并返回不可变列表中包含指定元素个数、到指定索引结束的元素范围内最后一个匹配项的从零开始的索引。
public:
virtual int FindLastIndex(int startIndex, int count, Predicate<T> ^ match);
public:
int FindLastIndex(int startIndex, int count, Predicate<T> ^ match);
public int FindLastIndex (int startIndex, int count, Predicate<T> match);
abstract member FindLastIndex : int * int * Predicate<'T> -> int
override this.FindLastIndex : int * int * Predicate<'T> -> int
member this.FindLastIndex : int * int * Predicate<'T> -> int
Public Function FindLastIndex (startIndex As Integer, count As Integer, match As Predicate(Of T)) As Integer
参数
- startIndex
- Int32
向后搜索的从零开始的起始索引。
- count
- Int32
要搜索的部分中的元素数。
- match
- Predicate<T>
委托,用于定义要搜索的元素的条件。
返回
如果找到与 match
定义的条件相匹配的最后一个元素,则为该元素的从零开始的索引;否则为 ?1。
适用于
FindLastIndex(Predicate<T>)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
搜索与指定谓词所定义的条件相匹配的元素,并返回整个不可变列表中最后一个匹配元素的从零开始的索引。
public:
virtual int FindLastIndex(Predicate<T> ^ match);
public:
int FindLastIndex(Predicate<T> ^ match);
public int FindLastIndex (Predicate<T> match);
abstract member FindLastIndex : Predicate<'T> -> int
override this.FindLastIndex : Predicate<'T> -> int
member this.FindLastIndex : Predicate<'T> -> int
Public Function FindLastIndex (match As Predicate(Of T)) As Integer
参数
- match
- Predicate<T>
委托,用于定义要搜索的元素的条件。
返回
如果找到与 match
定义的条件相匹配的最后一个元素,则为该元素的从零开始的索引;否则为 ?1。
适用于
FindLastIndex(Int32, Predicate<T>)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
搜索与指定谓词所定义的条件相匹配的元素,并返回不可变列表中从第一个元素到指定索引的元素范围内最后一个匹配项的从零开始的索引。
public:
virtual int FindLastIndex(int startIndex, Predicate<T> ^ match);
public:
int FindLastIndex(int startIndex, Predicate<T> ^ match);
public int FindLastIndex (int startIndex, Predicate<T> match);
abstract member FindLastIndex : int * Predicate<'T> -> int
override this.FindLastIndex : int * Predicate<'T> -> int
member this.FindLastIndex : int * Predicate<'T> -> int
Public Function FindLastIndex (startIndex As Integer, match As Predicate(Of T)) As Integer
参数
- startIndex
- Int32
向后搜索的从零开始的起始索引。
- match
- Predicate<T>
委托,用于定义要搜索的元素的条件。
返回
如果找到与 match
定义的条件相匹配的最后一个元素,则为该元素的从零开始的索引;否则为 ?1。