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

返回序列的最后一个元素。

C#
public static TSource Last<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);

类型参数

TSource

source 的元素类型。

参数

source
IEnumerable<TSource>

要返回其最后一个元素的 IEnumerable<T>

返回

TSource

源序列中最后位置处的值。

例外

sourcenull

源序列为空。

示例

下面的代码示例演示如何使用 Last<TSource>(IEnumerable<TSource>) 返回数组的最后一个元素。

C#
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
*/

注解

Last<TSource>(IEnumerable<TSource>)如果 source 不包含任何元素, 方法将引发异常。 若要在源序列为空时返回默认值,请使用 LastOrDefault 方法。

适用于

.NET 9 和其他版本
产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

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

Source:
Last.cs
Source:
Last.cs
Source:
Last.cs

返回序列中满足指定条件的最后一个元素。

C#
public static TSource Last<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);

类型参数

TSource

source 的元素类型。

参数

source
IEnumerable<TSource>

要从中返回元素的 IEnumerable<T>

predicate
Func<TSource,Boolean>

用于测试每个元素是否满足条件的函数。

返回

TSource

序列中通过指定谓词函数中的测试的最后一个元素。

例外

sourcepredicatenull

元素均不满足 predicate 中的条件。

- 或 -

源序列为空。

示例

下面的代码示例演示如何使用 Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 返回满足条件的数组的最后一个元素。

C#
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
*/

注解

Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)如果在 中source找不到匹配的元素, 方法将引发异常。 若要在找不到匹配元素时返回默认值,请使用 LastOrDefault 方法。

适用于

.NET 9 和其他版本
产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0