{TOC}
| Namespace: | System.Linq |
| Assembly: | System.Core.dll |
| Extends: | IEnumerable<T> |
Back to
Standard Query Operator IndexEditIntroduction
The Aggregate operator applies a function over a sequence.
Gamesbox Cat,
Gamesbox Ghost,
Home RenovationEditMethod Signatures
public static V Aggregate (
this IEnumerable<T> source,
U seed,
Func<U, T, U> func,
Func<U, V> resultSelector
)
public static U Aggregate (
this IEnumerable<T> source,
U seed,
Func<U, T, U> func
)
public static T Aggregate (
this IEnumerable<T> source,
Func<T, T, T> func
)
EditDocumentation
EditCode Samples