How to calculate the product of values in a list using Linq with C#

1 Answer

0 votes
using System;
using System.Linq;
using System.Collections.Generic;
  
class Program
{
    static void Main() {
        var list = new List<int> { 3, 7, 8, 91, 99, 10};
  
        var result = list.Aggregate((total, next) => total * next);
          
        Console.WriteLine(result);
    }
}
  
  
  
/*
run:
     
15135120
   
*/

 



answered Jul 5, 2023 by avibootz

Related questions

1 answer 151 views
1 answer 121 views
2 answers 120 views
2 answers 148 views
1 answer 137 views
...