Click or drag to resize

MoreEnumerableAggregateT, TAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TResult Method (IEnumerableT, TAccumulate1, FuncTAccumulate1, T, TAccumulate1, TAccumulate2, FuncTAccumulate2, T, TAccumulate2, TAccumulate3, FuncTAccumulate3, T, TAccumulate3, TAccumulate4, FuncTAccumulate4, T, TAccumulate4, FuncTAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TResult)

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

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.3.1+b77df70598ab84c28cd43dcf74594024b6d575e1
Syntax
public static TResult Aggregate<T, TAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, 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,
	Func<TAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, TResult> resultSelector
)

Parameters

source
Type: System.Collections.GenericIEnumerableT
The source sequence
seed1
Type: TAccumulate1
The seed value for the first accumulator.
accumulator1
Type: SystemFuncTAccumulate1, T, TAccumulate1
The first accumulator.
seed2
Type: TAccumulate2
The seed value for the second accumulator.
accumulator2
Type: SystemFuncTAccumulate2, T, TAccumulate2
The second accumulator.
seed3
Type: TAccumulate3
The seed value for the third accumulator.
accumulator3
Type: SystemFuncTAccumulate3, T, TAccumulate3
The third accumulator.
seed4
Type: TAccumulate4
The seed value for the fourth accumulator.
accumulator4
Type: SystemFuncTAccumulate4, T, TAccumulate4
The fourth accumulator.
resultSelector
Type: SystemFuncTAccumulate1, TAccumulate2, TAccumulate3, TAccumulate4, 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.
TResult
The type of the accumulated result.

Return Value

Type: 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