ImmutableArray<T>.Builder.LastIndexOf 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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
이 배열에서 마지막으로 나타나는 지정된 항목의 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
이 배열에서 마지막으로 나타나는 지정된 항목의 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
이 배열에서 마지막으로 나타나는 지정된 항목의 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
이 배열에서 마지막으로 나타나는 지정된 항목의 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입니다.
적용 대상
.NET