Enumerable.Last 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回序列的最後一個項目。
多載
Last<TSource>(IEnumerable<TSource>) |
傳回序列的最後一個項目。 |
Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
傳回序列中符合指定之條件的最後一個元素。 |
Last<TSource>(IEnumerable<TSource>)
- 來源:
- Last.cs
- 來源:
- Last.cs
- 來源:
- Last.cs
傳回序列的最後一個項目。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Last(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static TSource Last<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member Last : seq<'Source> -> 'Source
<Extension()>
Public Function Last(Of TSource) (source As IEnumerable(Of TSource)) As TSource
類型參數
- TSource
source
項目的類型。
參數
- source
- IEnumerable<TSource>
要傳回最後一個項目的 IEnumerable<T>。
傳回
TSource
位於來源序列中最後一個位置的值。
例外狀況
source
為 null
。
來源序列為空。
範例
下列程式代碼範例示範如何使用 Last<TSource>(IEnumerable<TSource>) 傳回數位的最後一個專案。
int[] numbers = { 9, 34, 65, 92, 87, 435, 3, 54,
83, 23, 87, 67, 12, 19 };
int last = numbers.Last();
Console.WriteLine(last);
/*
This code produces the following output:
19
*/
' Create an array of integers.
Dim numbers() As Integer =
{9, 34, 65, 92, 87, 435, 3, 54, 83, 23, 87, 67, 12, 19}
' Get the last item in the array.
Dim last As Integer = numbers.Last()
' Display the result.
Console.WriteLine(last)
' This code produces the following output:
'
' 19
備註
如果source
不包含任何元素,方法Last<TSource>(IEnumerable<TSource>)會擲回例外狀況。 若要改為在來源序列是空的時傳回預設值,請使用 LastOrDefault 方法。
適用於
Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
- 來源:
- Last.cs
- 來源:
- Last.cs
- 來源:
- Last.cs
傳回序列中符合指定之條件的最後一個元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Last(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static TSource Last<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member Last : seq<'Source> * Func<'Source, bool> -> 'Source
<Extension()>
Public Function Last(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource
類型參數
- TSource
source
項目的類型。
參數
- source
- IEnumerable<TSource>
傳回項目的 IEnumerable<T>。
傳回
TSource
序列中通過指定之述詞函式所做測試的最後一個項目。
例外狀況
source
或 predicate
為 null
。
範例
下列程式代碼範例示範如何使用 Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 傳回符合條件之陣列的最後一個專案。
int[] numbers = { 9, 34, 65, 92, 87, 435, 3, 54,
83, 23, 87, 67, 12, 19 };
int last = numbers.Last(num => num > 80);
Console.WriteLine(last);
/*
This code produces the following output:
87
*/
' Create an array of integers.
Dim numbers() As Integer =
{9, 34, 65, 92, 87, 435, 3, 54, 83, 23, 87, 67, 12, 19}
' Get the last element in the array whose value is
' greater than 80.
Dim last As Integer = numbers.Last(Function(num) num > 80)
' Display the result.
Console.WriteLine(last)
' This code produces the following output:
'
' 87
備註
如果在 中source
找不到相符的專案,方法Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)會擲回例外狀況。 若要改為在找不到相符的項目時傳回預設值,請使用 LastOrDefault 方法。