vote up 4 vote down star
1

EDIT

For reference, here's the blog post which eric referrrred to in the comments

http://blogs.msdn.com/ericlippert/archive/2009/05/18/foreach-vs-foreach.aspx

ORIG

More of a curiosity I suppose but one for the C# Specification Savants...

Why is it that the ForEach() clause doesn't work (or isn't available) for use on IQueryable/IEnumerable result sets...

You have to first convert your results ToList() or ToArray() Presumably theres a technical limitation to the way C# iterates IEnumerables Vs. Lists... Is it something to do with the Deferred Execution's of IEnumerables/IQuerable Collections. e.g.

var userAgentStrings = uasdc.UserAgentStrings
    .Where<UserAgentString>(p => p.DeviceID == 0 && 
                            !p.UserAgentString1.Contains("msie"));
//WORKS            
userAgentStrings.ToList().ForEach(uas => ProcessUserAgentString(uas));         

//WORKS
Array.ForEach(userAgentStrings.ToArray(), uas => ProcessUserAgentString(uas));

//Doesn't WORK
userAgentStrings.ForEach(uas => ProcessUserAgentString(uas));
flag

I'd write ForEach(uac => ProcessUserAgentString(uas)) as ForEach(ProcessUserAgentString). – Mehrdad Afshari May 13 at 16:54
What's the problem with a conventional for-each loop? foreach (var uas in UserAgentStrings) ProcessUserAgentString(uas); – Dario May 13 at 16:54
Theres no problem... Like I said, it was more of a curiousity why the convention was available to use on Arrays/Lists but not on IQueryables/IEnumerables and as Eric Lippert pointed out below, it's a completely philosophical choice by the dev team and not for any technical reasons – Eoin Campbell May 13 at 17:02

2 Answers

vote up 7 vote down check

What an amazing coincidence, I just now wrote a blog article about this very question. It will be was published May 18th. There is no technical reason why we (or you!) couldn't do this. The reasons why not are philosophical. See my blog next week for my argument.

link|flag
I was actually reading your mind Eric, but wanted to beat you to the punch ;) Cheers for the info, will check out the blog link next week. Cheers... – Eoin Campbell May 13 at 16:50
lol... mark as answer!!!! – vidalsasoon May 13 at 16:51
vote up 5 vote down

It's perfectly possible to write a ForEach extension method for IEnumerable<T>.

I'm not really sure why it isn't included as a built-in extension method:

  • Maybe because ForEach already existed on List<T> and Array prior to LINQ.
  • Maybe because it's easy enough to use a foreach loop to iterate the sequence.
  • Maybe because it wasn't felt to be functional/LINQy enough.
  • Maybe because it isn't chainable. (It's easy enough to make a chainable version that yields each item after performing an action, but that behaviour isn't particularly intuitive.)


public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
{
    if (action == null)
    {
        throw new ArgumentNullException("action", "Parameter cannot be null.");
    }

    foreach (T item in source)
    {
        action(item);
    }
}
link|flag
point taken, but the question was more in reference to why it's not available out of the box... i.e. Array has a static ForEach() method. List has one... Why don't IEnumerable/IQueryable – Eoin Campbell May 13 at 16:46
I guess we'll have to wait for Eric's blog post to find out the real answer ;) – Luke May 13 at 17:12
Your guesses are remarkably similar to my posting. – Eric Lippert May 13 at 21:38

Your Answer

Get an OpenID
or

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