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.