ParallelEnumerable.Last Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the last element of a parallel sequence.
Last<TSource>(ParallelQuery<TSource>) |
Returns the last element of a parallel sequence. |
Last<TSource>(ParallelQuery<TSource>, Func<TSource,Boolean>) |
Returns the last element of a parallel sequence that satisfies a specified condition. |
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
Returns the last element of a parallel sequence.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Last(System::Linq::ParallelQuery<TSource> ^ source);
public static TSource Last<TSource>(this System.Linq.ParallelQuery<TSource> source);
static member Last : System.Linq.ParallelQuery<'Source> -> 'Source
<Extension()>
Public Function Last(Of TSource) (source As ParallelQuery(Of TSource)) As TSource
Type Parameters
- TSource
The type of the elements of source
.
Parameters
- source
- ParallelQuery<TSource>
The sequence to return the last element from.
Returns
The value at the last position in the source sequence.
Exceptions
The query was canceled with the token passed in through WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken).
source
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
source
contains no elements.
Remarks
If the query is not ordered, then the last element is non-deterministic. For more information, see Order Preservation in PLINQ.
See also
Applies to
.NET 10 och andra versioner
Produkt | Versioner |
---|---|
.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, 10 |
.NET Framework | 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 | 2.0, 2.1 |
UWP | 10.0 |
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
- Source:
- ParallelEnumerable.cs
Returns the last element of a parallel sequence that satisfies a specified condition.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Last(System::Linq::ParallelQuery<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static TSource Last<TSource>(this System.Linq.ParallelQuery<TSource> source, Func<TSource,bool> predicate);
static member Last : System.Linq.ParallelQuery<'Source> * Func<'Source, bool> -> 'Source
<Extension()>
Public Function Last(Of TSource) (source As ParallelQuery(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource
Type Parameters
- TSource
The type of the elements of source
.
Parameters
- source
- ParallelQuery<TSource>
The sequence to return an element from.
Returns
The last element in the sequence that passes the test in the specified predicate function.
Exceptions
The query was canceled with the token passed in through WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken).
source
or predicate
is a null reference (Nothing in Visual Basic).
One or more exceptions occurred during the evaluation of the query.
No element in source
satisfies the condition in predicate
.
Remarks
If the query is not ordered, then the last element is non-deterministic. For more information, see Order Preservation in PLINQ.
See also
Applies to
.NET 10 och andra versioner
Produkt | Versioner |
---|---|
.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, 10 |
.NET Framework | 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 | 2.0, 2.1 |
UWP | 10.0 |
Feedback om .NET
.NET är ett öppen källkod projekt. Välj en länk för att ge feedback: