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 144 views
1 answer 109 views
2 answers 116 views
2 answers 144 views
1 answer 129 views
...