AggregateExtensionAggregateT, TAccumulate1, TAccumulate2, TAccumulate3, TResult(IEnumerableT, TAccumulate1, FuncTAccumulate1, T, TAccumulate1, TAccumulate2, FuncTAccumulate2, T, TAccumulate2, TAccumulate3, FuncTAccumulate3, T, TAccumulate3, FuncTAccumulate1, TAccumulate2, TAccumulate3, TResult) Method

Applies three 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, 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,
	Func<TAccumulate1, TAccumulate2, TAccumulate3, 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.
resultSelector  FuncTAccumulate1, TAccumulate2, TAccumulate3, 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.
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