C#在数组上使用Aggregate
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); } }
范例2
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Linq; public class MainClass{ public static void Main(){ int[] numbers = { 9, 3, 5, 4, 2, 6, 7, 1, 8 }; var query = numbers.Aggregate(5, (a,b) => ( (a < b) ? (a * b) : a)); } }