Enumerable.Last<'TSource> Method (IEnumerable<'TSource>)
.NET Framework (current version)
Returns the last element of a sequence.
Assembly: System.Core (in System.Core.dll)
Parameters
- source
-
Type:
System.Collections.Generic.IEnumerable<'TSource>
An IEnumerable<'T> to return the last element of.
Return Value
Type: TSourceThe value at the last position in the source sequence.
Type Parameters
- TSource
The type of the elements of source.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
| InvalidOperationException | The source sequence is empty. |
The Last<'TSource>(IEnumerable<'TSource>) method throws an exception if source contains no elements. To instead return a default value when the source sequence is empty, use the LastOrDefault<'TSource> method.
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: