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::Average Method

.NET Framework (current version)
 

Computes in parallel the average of a sequence of values.

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

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Decimal>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Double>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Int32>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Int64>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Nullable<Decimal>>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Nullable<Double>>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Nullable<Int32>>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Nullable<Int64>>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Nullable<Single>>^)

Computes in parallel the average of a sequence of values.

System_CAPS_pubmethodSystem_CAPS_staticAverage(ParallelQuery<Single>^)

Computes in parallel the average of a sequence of values.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

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

Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

Return to top
Show:
© 2017 Microsoft