ImmutableArray<T>.Builder.LastIndexOf 메서드

정의

오버로드

Name Description
LastIndexOf(T)

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

LastIndexOf(T, Int32)

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

LastIndexOf(T, Int32, Int32)

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

LastIndexOf(T, Int32, Int32, IEqualityComparer<T>)

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

LastIndexOf(T)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

public:
 int LastIndexOf(T item);
public int LastIndexOf(T item);
member this.LastIndexOf : 'T -> int
Public Function LastIndexOf (item As T) As Integer

매개 변수

item
T

검색할 항목입니다.

반품

항목이 발견된 0부터 시작하는 인덱스입니다. 또는 찾을 수 없는 경우 -1.

적용 대상

LastIndexOf(T, Int32)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

public:
 int LastIndexOf(T item, int startIndex);
public int LastIndexOf(T item, int startIndex);
member this.LastIndexOf : 'T * int -> int
Public Function LastIndexOf (item As T, startIndex As Integer) As Integer

매개 변수

item
T

검색할 항목입니다.

startIndex
Int32

검색의 시작 위치입니다.

반품

항목이 발견된 배열에 대한 0부터 시작하는 인덱스입니다. 또는 찾을 수 없는 경우 -1.

적용 대상

LastIndexOf(T, Int32, Int32)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

public:
 int LastIndexOf(T item, int startIndex, int count);
public int LastIndexOf(T item, int startIndex, int count);
member this.LastIndexOf : 'T * int * int -> int
Public Function LastIndexOf (item As T, startIndex As Integer, count As Integer) As Integer

매개 변수

item
T

검색할 항목입니다.

startIndex
Int32

검색의 시작 위치입니다.

count
Int32

검색할 요소의 수입니다.

반품

항목이 발견된 배열에 대한 0부터 시작하는 인덱스입니다. 또는 찾을 수 없는 경우 -1.

적용 대상

LastIndexOf(T, Int32, Int32, IEqualityComparer<T>)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

이 배열에서 지정한 항목이 마지막으로 나타나는 0부터 시작하는 인덱스를 결정합니다.

public:
 int LastIndexOf(T item, int startIndex, int count, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public int LastIndexOf(T item, int startIndex, int count, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public int LastIndexOf(T item, int startIndex, int count, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
member this.LastIndexOf : 'T * int * int * System.Collections.Generic.IEqualityComparer<'T> -> int
Public Function LastIndexOf (item As T, startIndex As Integer, count As Integer, equalityComparer As IEqualityComparer(Of T)) As Integer

매개 변수

item
T

검색할 항목입니다.

startIndex
Int32

검색의 시작 위치입니다.

count
Int32

검색할 요소의 수입니다.

equalityComparer
IEqualityComparer<T>

검색에 사용할 같음 비교자입니다.

반품

항목이 발견된 배열에 대한 0부터 시작하는 인덱스입니다. 또는 찾을 수 없는 경우 -1.

적용 대상