ImmutableList.LastIndexOf 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
LastIndexOf<T>(IImmutableList<T>, T) |
지정된 개체를 검색하고 전체 변경할 수 없는 목록에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다. |
LastIndexOf<T>(IImmutableList<T>, T, IEqualityComparer<T>) |
지정된 개체를 검색하고 전체 변경할 수 없는 목록에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다. |
LastIndexOf<T>(IImmutableList<T>, T, Int32) |
지정된 개체를 검색하고, 첫 번째 요소에서 지정된 인덱스로 확장하는 변경할 수 없는 목록의 요소 범위 내에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다. |
LastIndexOf<T>(IImmutableList<T>, T, Int32, Int32) |
지정된 개체를 검색하고, 첫 번째 요소에서 지정된 인덱스로 확장하는 변경할 수 없는 목록의 요소 범위 내에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다. |
LastIndexOf<T>(IImmutableList<T>, T)
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
지정된 개체를 검색하고 전체 변경할 수 없는 목록에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int LastIndexOf(System::Collections::Immutable::IImmutableList<T> ^ list, T item);
public static int LastIndexOf<T> (this System.Collections.Immutable.IImmutableList<T> list, T item);
static member LastIndexOf : System.Collections.Immutable.IImmutableList<'T> * 'T -> int
<Extension()>
Public Function LastIndexOf(Of T) (list As IImmutableList(Of T), item As T) As Integer
형식 매개 변수
- T
목록에 있는 항목의 형식입니다.
매개 변수
- list
- IImmutableList<T>
검색할 목록입니다.
- item
- T
변경할 수 없는 목록에서 찾을 개체입니다. 참조 형식의 경우 값은 null일 수 있습니다.
반환
전체 변경할 수 없는 목록 내에서 항목이 있으면 마지막으로 나타나는 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.
적용 대상
LastIndexOf<T>(IImmutableList<T>, T, IEqualityComparer<T>)
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
지정된 개체를 검색하고 전체 변경할 수 없는 목록에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int LastIndexOf(System::Collections::Immutable::IImmutableList<T> ^ list, T item, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public static int LastIndexOf<T> (this System.Collections.Immutable.IImmutableList<T> list, T item, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public static int LastIndexOf<T> (this System.Collections.Immutable.IImmutableList<T> list, T item, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
static member LastIndexOf : System.Collections.Immutable.IImmutableList<'T> * 'T * System.Collections.Generic.IEqualityComparer<'T> -> int
<Extension()>
Public Function LastIndexOf(Of T) (list As IImmutableList(Of T), item As T, equalityComparer As IEqualityComparer(Of T)) As Integer
형식 매개 변수
- T
목록에 있는 항목의 형식입니다.
매개 변수
- list
- IImmutableList<T>
검색할 목록입니다.
- item
- T
변경할 수 없는 목록에서 찾을 개체입니다. 참조 형식의 경우 값은 null일 수 있습니다.
- equalityComparer
- IEqualityComparer<T>
검색에서 사용할 같음 비교자입니다.
반환
전체 변경할 수 없는 목록 내에서 항목이 있으면 마지막으로 나타나는 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.
적용 대상
LastIndexOf<T>(IImmutableList<T>, T, Int32)
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
지정된 개체를 검색하고, 첫 번째 요소에서 지정된 인덱스로 확장하는 변경할 수 없는 목록의 요소 범위 내에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int LastIndexOf(System::Collections::Immutable::IImmutableList<T> ^ list, T item, int startIndex);
public static int LastIndexOf<T> (this System.Collections.Immutable.IImmutableList<T> list, T item, int startIndex);
static member LastIndexOf : System.Collections.Immutable.IImmutableList<'T> * 'T * int -> int
<Extension()>
Public Function LastIndexOf(Of T) (list As IImmutableList(Of T), item As T, startIndex As Integer) As Integer
형식 매개 변수
- T
목록에 있는 항목의 형식입니다.
매개 변수
- list
- IImmutableList<T>
검색할 목록입니다.
- item
- T
변경할 수 없는 목록에서 찾을 개체입니다. 참조 형식의 경우 값은 null일 수 있습니다.
- startIndex
- Int32
역방향 검색의 0부터 시작하는 인덱스입니다.
반환
첫 번째 요소에서 인덱스로 확장되는 변경할 수 없는 목록의 요소 범위 내에서 항목이 있으면 마지막으로 나타나는 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.
적용 대상
LastIndexOf<T>(IImmutableList<T>, T, Int32, Int32)
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
지정된 개체를 검색하고, 첫 번째 요소에서 지정된 인덱스로 확장하는 변경할 수 없는 목록의 요소 범위 내에서 마지막으로 나타나는 개체의 0부터 시작하는 인덱스를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int LastIndexOf(System::Collections::Immutable::IImmutableList<T> ^ list, T item, int startIndex, int count);
public static int LastIndexOf<T> (this System.Collections.Immutable.IImmutableList<T> list, T item, int startIndex, int count);
static member LastIndexOf : System.Collections.Immutable.IImmutableList<'T> * 'T * int * int -> int
<Extension()>
Public Function LastIndexOf(Of T) (list As IImmutableList(Of T), item As T, startIndex As Integer, count As Integer) As Integer
형식 매개 변수
- T
목록에 있는 항목의 형식입니다.
매개 변수
- list
- IImmutableList<T>
검색할 목록입니다.
- item
- T
변경할 수 없는 목록에서 찾을 개체입니다. 참조 형식의 경우 값은 null일 수 있습니다.
- startIndex
- Int32
역방향 검색의 0부터 시작하는 인덱스입니다.
- count
- Int32
검색할 섹션에 있는 요소 수입니다.
반환
첫 번째 요소에서 인덱스로 확장되는 변경할 수 없는 목록의 요소 범위 내에서 항목이 있으면 마지막으로 나타나는 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.
적용 대상
.NET