8. Aggregation Flashcards
1
Q
What does the LINQ Aggregate method do?
A
Applies a custom accumulator function that we define over a sequence. If specified, the seed value is used as the initial accumulator value, and the specified function is used to select the result value.
2
Q
What does the LINQ Group method do?
A
Groups the elements of a sequence.