Use Aggregate on an array : Aggregate « LINQ « C# / C Sharp






Use Aggregate on an array

 


using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

public class MainClass {
    public static void Main() {
        int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
        var query = numbers.Aggregate((a, b) => a * b);
    }
}

 








Related examples in the same category

1.Use Aggregate on an array with tenary operator
2.Aggregate Prototype
3.Aggregate and Sum