Linq Aggregate function

白昼怎懂夜的黑 提交于 2019-12-11 11:53:33

问题


I have a List like

"test", "bla", "something", "else"

But when I use the Aggrate on it and in the mean time call a function it seems to me that after 2 'iterations' the result of the first gets passed in?

I am using it like :

myList.Aggregate((current, next) => someMethod(current) + ", "+ someMethod(next));

and while I put a breakpoint in the someMethod function where some transformation on the information in the myList occurs, I notice that after the 3rd call I get a result from a former transformation as input paramter.


回答1:


That's the way its intended to work.

What you have labeled current, its meant to be all that have been accumulated so far. On the first call, the seed is the first element.

You could do something like:

var res = myList
   .Aggregate(String.Empty, (accumulated, next) => accumulated+ ", "+ someMethod(next))
   .Substring(2);//take out the first ", "

That way, you only apply someMethod once on each element.




回答2:


If my list was a list of strings, and i wanted to return/manipulate only certain items, I would usually do something like this:

     var NewCollection = MyStringCollection
                             //filter with where clause
                             .Where(StringItem => StringItem == "xyz"
                             //select/manipulate with aggregate
                             .Aggregate(default(string.empty), (av, e) =>
                             {
                                 //do stuff
                                 return av ?? e;
                             });


来源:https://stackoverflow.com/questions/2753900/linq-aggregate-function

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!