Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ParallelEnumerable::Max Method

.NET Framework (current version)
 

Returns the maximum value in a parallel sequence of values.

Namespace:   System.Linq
Assembly:  System.Core (in System.Core.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Decimal>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Double>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Int32>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Int64>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Nullable<Decimal>>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Nullable<Double>>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Nullable<Int32>>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Nullable<Int64>>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Nullable<Single>>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax(ParallelQuery<Single>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^)

Returns the maximum value in a parallel sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Decimal>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Double>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Int32>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Int64>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Decimal>>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Double>>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Int32>>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Int64>>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Nullable<Single>>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource>(ParallelQuery<TSource>^, Func<TSource, Single>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

System_CAPS_pubmethodSystem_CAPS_staticMax<TSource, TResult>(ParallelQuery<TSource>^, Func<TSource, TResult>^)

Invokes in parallel a transform function on each element of a sequence and returns the maximum value.

Return to top
Show:
© 2017 Microsoft