vote up 9 vote down star
2

I'd like to do the equivalent of the following in LINQ, but I can't figure out how:

IEnumerable<Item> items = GetItems();
items.ForEach(i => i.DoStuff());

What is the real syntax?

flag

5 Answers

vote up 18 vote down check

There is no ForEach extension for IEnumerable; only for List. So you could do

items.ToList().ForEach(i => i.DoStuff());

Alternatively, write your own ForEach extension:

public static void ForEach<T>(this IEnumerable<T> enumeration, Action<T> action)
{
    foreach(T item in enumeration)
    {
        action(item);
    }
}
link|flag
5  
Honestly I think the normal foreach construct is more readable than the extension method in most cases. – Matt Hamilton Oct 14 '08 at 11:11
I used to have a method like this in my code, but really ToList().ForEach() solves the problem and I feel that Jon's answer, below, is more correct. – cfeduke Apr 17 at 14:39
1  
Be careful with ToList(), because ToList() creates a copy of the sequence, which could cause performance and memory issues. – decasteljau Aug 14 at 12:37
vote up 13 vote down

Fredrik has provided the fix, but it may be worth considering why this isn't in the framework to start with. I believe the idea is that the LINQ query operators should be side-effect-free, fitting in with a reasonably functional way of looking at the world. Clearly ForEach is exactly the opposite - a purely side-effect-based construct.

That's not to say this is a bad thing to do - just thinking about the philosophical reasons behind the decision.

link|flag
1  
For reference, this question poses the same question, and gets input from "the powers that be": stackoverflow.com/questions/858978/… – Benjol Jun 4 at 13:11
Exactly what Eric Lippert states in blogs.msdn.com/ericlippert/archive/… – Alex Angas Oct 21 at 14:13
vote up 2 vote down

If you can use IQueryable<T> instead of IEnumerable<T>, then the Select method should do what you want.

IQueryable<Item> items = GetItems();
IQueryable<Item> modifiedItems = items.Select(i => i.DoStuff());

LINQ's select method doesn't really have anything in common with the SQL SELECT keyword; what it does is apply a function to each element in a set, and return a set containing the results of those functions.

link|flag
This assummes that i.DoStuff() returns an Item (either the modified i or a new copy). And why can't it be done with IEnumerable<T>? – Lucas Oct 14 '08 at 18:34
Why wouldn't DoStuff() return an item? If you have the code for Item, you can make return whatever you want. If you don't, you can create an extension method. – toast Jul 10 at 4:19
vote up 0 vote down

There is none.

You have to use the 'foreach' keyword, or do it C# 1.0 style.

link|flag
What's C# 1 style? I am sure there was a foreach in the language at the time... – Martinho Fernandes Oct 2 at 13:24
vote up 0 vote down

I respectually disagree with the notion that link extension methods should be side-effect free (not only because they aren't, any delegate can perform side effects).

Consider the following:

   public class Element {}

   public Enum ProcessType
   {
      This = 0, That = 1, SomethingElse = 2
   }

   public class Class1
   {
      private Dictionary<ProcessType, Action<Element>> actions = 
         new Dictionary<ProcessType,Action<Element>>();

      public Class1()
      {
         actions.Add( ProcessType.This, DoThis );
         actions.Add( ProcessType.That, DoThat );
         actions.Add( ProcessType.SomethingElse, DoSomethingElse );
      }

      // Element actions:

      // This example defines 3 distict actions
      // that can be applied to individual elements,
      // But for the sake of the argument, make
      // no assumption about how many distict
      // actions there may, and that there could
      // possibly be many more.

      public void DoThis( Element element )
      {
         // Do something to element
      }

      public void DoThat( Element element )
      {
         // Do something to element
      }

      public void DoSomethingElse( Element element )
      {
         // Do something to element
      }

      public void Apply( ProcessType processType, IEnumerable<Element> elements )
      {
         Action<Element> action = null;
         if( ! actions.TryGetValue( processType, out action ) )
            throw new ArgumentException("processType");
         foreach( element in elements ) 
            action(element);
      }
   }

What the example shows is really just a kind of late-binding that allows one invoke one of many possible actions having side-effects on a sequence of elements, without having to write a big switch construct to decode the value that defines the action and translate it into its corresponding method.

link|flag
What's the point here? – Stefan Steinegger Oct 2 at 13:27

Your Answer

Get an OpenID
or

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