© 2026 Hedgehog Software, LLC
var query = Enumerable.Range(1, 1000) .Where(x => x % 2 == 0) .Aggregate((x, y) => x * y); Console.WriteLine(query);