ImmutableArrayExtensions.Last 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Last<T>(ImmutableArray<T>.Builder) |
컬렉션의 마지막 요소를 반환합니다. |
Last<T>(ImmutableArray<T>, Func<T,Boolean>) |
시퀀스에서 지정된 조건에 맞는 마지막 요소를 반환합니다. |
Last<T>(ImmutableArray<T>) |
배열의 마지막 요소를 반환합니다. |
Last<T>(ImmutableArray<T>.Builder)
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
컬렉션의 마지막 요소를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Last(System::Collections::Immutable::ImmutableArray<T>::Builder ^ builder);
public static T Last<T> (this System.Collections.Immutable.ImmutableArray<T>.Builder builder);
static member Last : System.Collections.Immutable.ImmutableArray<'T>.Builder -> 'T
<Extension()>
Public Function Last(Of T) (builder As ImmutableArray(Of T).Builder) As T
형식 매개 변수
- T
작성기에 있는 항목의 형식입니다.
매개 변수
- builder
- ImmutableArray<T>.Builder
요소를 검색할 작성기입니다.
반환
T
작성기의 마지막 요소입니다.
예외
컬렉션이 비어 있습니다.
적용 대상
Last<T>(ImmutableArray<T>, Func<T,Boolean>)
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
시퀀스에서 지정된 조건에 맞는 마지막 요소를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Last(System::Collections::Immutable::ImmutableArray<T> immutableArray, Func<T, bool> ^ predicate);
public static T Last<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, Func<T,bool> predicate);
static member Last : System.Collections.Immutable.ImmutableArray<'T> * Func<'T, bool> -> 'T
<Extension()>
Public Function Last(Of T) (immutableArray As ImmutableArray(Of T), predicate As Func(Of T, Boolean)) As T
형식 매개 변수
- T
컬렉션에 의해 포함되는 요소의 형식입니다.
매개 변수
- immutableArray
- ImmutableArray<T>
요소를 검색할 배열입니다.
반환
T
predicate
조건을 충족하는 배열의 마지막 요소입니다.
예외
컬렉션이 비어 있습니다.
적용 대상
Last<T>(ImmutableArray<T>)
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
배열의 마지막 요소를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Last(System::Collections::Immutable::ImmutableArray<T> immutableArray);
public static T Last<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray);
static member Last : System.Collections.Immutable.ImmutableArray<'T> -> 'T
<Extension()>
Public Function Last(Of T) (immutableArray As ImmutableArray(Of T)) As T
형식 매개 변수
- T
배열에 의해 포함되는 요소의 형식입니다.
매개 변수
- immutableArray
- ImmutableArray<T>
항목을 검색할 배열입니다.
반환
T
배열의 마지막 요소입니다.
예외
컬렉션이 비어 있습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET