AggregateExtensionAggregateT, TAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TAccumulate5, TAccumulate6, TResult(IEnumerableT, TAccumulate1, FuncTAccumulate1, T, TAccumulate1, TAccumulate2, FuncTAccumulate2, T, TAccumulate2, TAccumulate3, FuncTAccumulate3, T, TAccumulate3, TAccumulate4, FuncTAccumulate4, T, TAccumulate4, TAccumulate5, FuncTAccumulate5, T, TAccumulate5, TAccumulate6, FuncTAccumulate6, T, TAccumulate6, FuncTAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TAccumulate5, TAccumulate6, TResult) Method

Applies six accumulators sequentially in a single pass over a sequence.

Definition

Namespace: MoreLinq.Extensions
Assembly: MoreLinq (in MoreLinq.dll) Version: 4.1.0+0e154ef592f33ce0f6f3d534a9eedee273f0ce72
C#
public static TResult Aggregate<T, TAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TAccumulate5, TAccumulate6, TResult>(
	this IEnumerable<T> source,
	TAccumulate1 seed1,
	Func<TAccumulate1, T, TAccumulate1> accumulator1,
	TAccumulate2 seed2,
	Func<TAccumulate2, T, TAccumulate2> accumulator2,
	TAccumulate3 seed3,
	Func<TAccumulate3, T, TAccumulate3> accumulator3,
	TAccumulate4 seed4,
	Func<TAccumulate4, T, TAccumulate4> accumulator4,
	TAccumulate5 seed5,
	Func<TAccumulate5, T, TAccumulate5> accumulator5,
	TAccumulate6 seed6,
	Func<TAccumulate6, T, TAccumulate6> accumulator6,
	Func<TAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TAccumulate5, TAccumulate6, TResult> resultSelector
)

Parameters

source  IEnumerableT
The source sequence
seed1  TAccumulate1
The seed value for the first accumulator.
accumulator1  FuncTAccumulate1, T, TAccumulate1
The first accumulator.
seed2  TAccumulate2
The seed value for the second accumulator.
accumulator2  FuncTAccumulate2, T, TAccumulate2
The second accumulator.
seed3  TAccumulate3
The seed value for the third accumulator.
accumulator3  FuncTAccumulate3, T, TAccumulate3
The third accumulator.
seed4  TAccumulate4
The seed value for the fourth accumulator.
accumulator4  FuncTAccumulate4, T, TAccumulate4
The fourth accumulator.
seed5  TAccumulate5
The seed value for the fifth accumulator.
accumulator5  FuncTAccumulate5, T, TAccumulate5
The fifth accumulator.
seed6  TAccumulate6
The seed value for the sixth accumulator.
accumulator6  FuncTAccumulate6, T, TAccumulate6
The sixth accumulator.
resultSelector  FuncTAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TAccumulate5, TAccumulate6, TResult
A function that projects a single result given the result of each accumulator.

Type Parameters

T
The type of elements in source.
TAccumulate1
The type of first accumulator value.
TAccumulate2
The type of second accumulator value.
TAccumulate3
The type of third accumulator value.
TAccumulate4
The type of fourth accumulator value.
TAccumulate5
The type of fifth accumulator value.
TAccumulate6
The type of sixth accumulator value.
TResult
The type of the accumulated result.

Return Value

TResult
The value returned by resultSelector.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

This operator executes immediately.

See Also