up vote 14 down vote favorite
1
share [g+] share [fb]

I found in MSDN's Linq samples a neat method called Fold() that I want to use. Their example:

double[] doubles = { 1.7, 2.3, 1.9, 4.1, 2.9 }; 
double product = 
     doubles.Fold((runningProduct, nextFactor) => runningProduct * nextFactor);

Unfortunately, I can't get this to compile, either in their example or in my own code, and I can't find anywhere else in MSDN (like Enumerable or Array extension methods) that mention this method. The error I get is a plain old "don't know anything about that" error:

error CS1061: 'System.Array' does not contain a definition for 'Fold' and no 
extension method 'Fold' accepting a first argument of type 'System.Array' could 
be found (are you missing a using directive or an assembly reference?)

I'm using other methods which I believe come from Linq (like Select() and Where()), and I'm "using System.Linq", so I think that's all OK.

Does this method really exist in C# 3.5, and if so, what am I doing wrong?

link|improve this question

1  
Check out the bread crumb trail* on the samples page you referenced--it refers to C# 3 as a future product. Future products often change before they ship. Like the others mentioned, see Enumerable.Aggregate and have fun. :) *Visual C# Developer Center > Home > Product Information > Future Versions > 101 LINQ Samples > Aggregate Operators – Curt Nichols Aug 5 '09 at 1:34
feedback

2 Answers

up vote 18 down vote accepted

You will want to use the Aggregate extension method:

double product = doubles.Aggregate(1.0, (prod, next) => prod * next);

See MSDN for more information. It lets you specify a seed and then an expression to calculate successive values.

link|improve this answer
feedback

Fold (aka Reduce) is the standard term from functional programming. For whatever reason, it got named Aggregate in LINQ.

double product = doubles.Aggregate(1.0, (runningProduct, nextFactor) => runningProduct* nextFactor);
link|improve this answer
1  
Aggregate is a more familiar term in the OO and SQL realms. – Adam Robinson Aug 5 '09 at 1:27
1  
Was not aware of the CREATE AGGREGATE keyword ( msdn.microsoft.com/en-us/library/ms182741.aspx ) Learn something new every day. – Richard Berg Aug 5 '09 at 1:54
2  
Funny, I've never heard "aggregate" outside of SQL. WP has a list en.wikipedia.org/wiki/Fold_(higher-order_function) of a couple dozen languages and C# is the only one that calls it "Aggregate". "Reduce" is the clear winner, followed by "Fold" for the ML family, and "Inject" for Smalltalk and friends. – Ken Mar 16 '11 at 22:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.