Enumerable.Last 方法

定義

傳回序列的最後一個項目。

多載

Last<TSource>(IEnumerable<TSource>)

傳回序列的最後一個項目。

Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)

傳回序列中符合指定之條件的最後一個元素。

Last<TSource>(IEnumerable<TSource>)

Source:
Last.cs
Source:
Last.cs
Source:
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

位於來源序列中最後一個位置的值。

例外狀況

sourcenull

來源序列為空。

範例

下列程式碼範例示範如何使用 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>)

Source:
Last.cs
Source:
Last.cs
Source:
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>

predicate
Func<TSource,Boolean>

用來測試每個項目是否符合條件的函式。

傳回

TSource

序列中通過指定之述詞函式所做測試的最後一個項目。

例外狀況

sourcepredicatenull

沒有任何項目符合 predicate 的條件。

-或-

來源序列為空。

範例

下列程式碼範例示範如何使用 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 方法。

適用於