vote up 1 vote down star
1

Possible Duplicate:
Linq equivalent of foreach for IEnumerable

Is there any linq style syntax for "For each" operations?

For instance, add values based on one collection to another, already existing one:

IEnumerable<int> someValues = new List<int>() { 1, 2, 3 };
IList<int> list = new List<int>();

someValues.ForEach(x => list.Add((x + 1));

Instead of

foreach(int value in someValues)
{
  list.Add(value + 1);
}
flag

75% accept rate
Related to this question, but not quite a dupe: stackoverflow.com/questions/858978/… – Luke Oct 2 at 13:25
2  
See also this blog post from Eric Lippert, regarding the rationale for not including ForEach in the BCL: blogs.msdn.com/ericlippert/archive/… – Luke Oct 2 at 13:28

closed as exact duplicate by aku, Steven Robbins, bruno conde, Cameron MacFarland, John Saunders Oct 3 at 1:02

7 Answers

vote up 3 vote down check

Using the ToList() extenstion method is your best option:

someValues.ToList().ForEach(x => list.Add((x + 1));

There is no extenstion method in the BCL that implements ForEach directly.

link|flag
Accepted because it's the first correct answer. Thanks a lot. – Stefan Steinegger Oct 2 at 13:29
1  
Bear in mind that this isn't ideal for a very long list, as it makes a copy of the entire list before looping through it. – Earwicker Oct 2 at 13:32
1  
Calling ToList followed by ForEach involves iterating through the original collection twice. I'd prefer a standard foreach loop any day: less typing, more readable and better performance: foreach (var x in someValues) list.Add(x + 1); – Luke Oct 2 at 13:35
2  
For anyone who sees this and thinks its a good answer, its not. It is crazy inefficient. See Noldorin's answer for the correct way to do things. – Steve Oct 2 at 14:26
@Steve: Thanks for pointing that out. Indeed, this is not the best solution because it means the collection is iterated over twice, and memory is temporarily allocated for the List<T>, adding more overhead! – Noldorin Oct 2 at 14:33
show 5 more comments
vote up 8 vote down

The Array and List<T> classes already have ForEach methods, though only this specific implementation. (Note that the former is static, by the way).

Not sure it really offers a great advantage over a foreach statement, but you could write an extension method to do the job for all IEnumerable<T> objects.

public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
{
    foreach (var item in source)
        action(item);
}

This would allow the exact code you posted in your question to work just as you want.

link|flag
Thanks, It's clear that I could write the extension myself. I just want to use built in stuff as far as possible before doing this. – Stefan Steinegger Oct 2 at 13:28
Yeah, that's fair enough. I also make sure I'm not reinventing BCL functionality too. In this case, there's none however. – Noldorin Oct 2 at 13:39
vote up 2 vote down

There isn't anything built-in, but you can easily create your own extension method to do it:

public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
{
    // error-checking etc omitted for brevity

    foreach (T item in source)
    {
        action(item);
    }
}
link|flag
vote up 1 vote down

The official MS line is "because it's not a functional operation" (ie it's a stateful operation).

Couldn't you do something like:

list.Select( x => x+1 )

or if you really need it in a List:

var someValues = new List<int>( list.Select( x => x+1 ) );
link|flag
You have a point about functional vs. stateful operations. However, F# was designed as a functional length, and has an equivalent ForEach method. – Noldorin Oct 2 at 13:25
vote up 0 vote down

There isn't anything like that in standard Linq, but there is a ForEach operator in MoreLinq.

link|flag
vote up 0 vote down

http://stackoverflow.com/questions/200574/linq-equivalent-of-foreach-for-ienumerable

link|flag
Oh, thanks, I didn't see this. – Stefan Steinegger Oct 2 at 13:20
1  
This should be posted as a comment/vote to close (duplicate), not an answer. – Noldorin Oct 2 at 13:24
vote up 0 vote down

There is no Linq ForEach extension. However, the List class has a ForEach method on it, if you're willing to use the List directly.

For what it's worth, the standard foreach syntax will give you the results you want and it's probably easier to read:

foreach (var x in someValues)
{
    list.Add(x + 1);
}

If you're adamant you want an Linq style extension. it's trivial to implement this yourself.

public static void ForEach<T>(this IEnumerable<T> @this, Action<T> action)
{
   foreach (var x in @this)
      action(x);
}
link|flag

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