4
Reply

Lambda expressions with List in C#

chaitanyapai pai

chaitanyapai pai

Jul 17 2013 3:27 AM
1.2k
Please consider this example,
 
List lst = new List { 1, 2, 3, 4 };
int result = lst.Aggregate((x, y) => x * y);
 

As per the articles (x,y) specifies input parameters and x*y as implementation, my doubt is, aggregate() is the method of list, then it has to have inner implementation of aggregation by its own, then what (x*y) specifies or rather needed here...
 
Please mention the articles explaining lambda and list separately...
 
Thanks in advance,

Answers (4)