I\'m using some functional stuff in C# and keep getting stuck on the fact that List.Add doesn\'t return the updated list.
List.Add
In general, I\'d like to call
You can do almost exactly the first example naturally using code blocks in C# 3.0.
((accum, data) => { accum.Add(data); return accum; })