vote up 10 vote down star
1

Hi,

Is there some rare language construct I haven't encountered (like the few I've learned recently, some on Stack Overflow) in C# to get a value representing the current iteration of a foreach loop?

For instance, I currently do something like this depending on the circumstances:

int i=0;
foreach (Object o in collection)
{
    ...
    i++;
}

Answers:

@bryansh: I am setting the class of an element in a view page based on the position in the list. I guess I could add a method that gets the CSSClass for the Objects I am iterating through but that almost feels like a violation of the interface of that class.

@Brad Wilson: I really like that - I've often thought about something like that when using the ternary operator but never really given it enough thought.

As a bit of food for thought it would be nice if you could do something similar to somehow add (generically to all IEnumerable objects) a handle on the enumerator to increment the value that an extension method returns i.e. inject a method into the IEnumerable interface that returns an iterationindex.

Of course this would be blatant hacks and witchcraft... Cool though...

@crucible: Awesome I totally forgot to check the LINQ methods. Hmm appears to be a terrible library implementation though. I don't see why people are downvoting you though. You'd expect the method to either use some sort of HashTable of indices or even another SQL call, not an O(N) iteration... (@Jonathan Holland yes you are right, expecting SQL was wrong)

@Joseph Daigle: The difficulty is that I assume the foreach casting/retrieval is optimised more than my own code would be.

@Jonathan Holland: Ah, cheers for explaining how it works and ha at firing someone for using it.

flag

10 Answers

vote up 18 vote down check

Foreach is for iterating over collections that implement IEnumerable. It does this by calling GetEnumerator on the collection, which will return an Enumerator.

This Enumerator has a method and a property:

  • MoveNext()
  • Current

Current returns the object that Enumerator is currently on, MoveNext updates Current to the next object.

Obviously, the concept of an index is foreign to the concept of enumeration, and cannot be done.

Because of that, most collections are able to be traversed using an indexer and the for loop construct.

I greatly prefer using a for loop in this situation compared to tracking the index with a local variable.

link|flag
vote up 5 vote down

Nope, just the for loop.

link|flag
vote up 0 vote down

Unless your collection can return the index of the object via some method, the only way is to use a counter like in your example.

However, when working with indexes, the only reasonable answer to the problem is to use a for loop. Anything else introduces code complexity, not to mention time and space complexity.

link|flag
vote up -1 vote down

I don't believe there is a way to get the value of the current iteration of a foreach loop. Counting yourself, seems to be the best way.

May I ask, why you would want to know?

It seems that you would most likley be doing one of three things:

1) Getting the object from the collection, but in this case you already have it.

2) Counting the objects for later post processing...the collections have a Count property that you could make use of.

3) Setting a property on the object based on its order in the loop...although you could easily be setting that when you added the object to the collection.

link|flag
vote up 8 vote down

Could do something like this:

public static class ForEachExtensions
{
    public static void ForEachWithIndex<T>(this IEnumerable<T> enumerable, Action<T, int> handler)
    {
        int idx = 0;
        foreach (T item in enumerable)
            handler(item, idx++);
    }
}

public class Example
{
    public static void Main()
    {
        string[] values = new[] { "foo", "bar", "baz" };

        values.ForEachWithIndex((item, idx) => Console.WriteLine("{0}: {1}", idx, item));
    }
}
link|flag
vote up -2 vote down

It's only going to work for a List and not any IEnumerable, but in LINQ there's this:

IList<Object> collection = new List<Object> { 
    new Object(), 
    new Object(), 
    new Object(), 
    };

foreach (Object o in collection)
{
    Console.WriteLine(collection.IndexOf(o));
}

Console.ReadLine();

@Jonathan I didn't say it was a great answer, I just said it was just showing it was possible to do what he asked :)

@Graphain I wouldn't expect it to be fast - I'm not entirely sure how it works, it could reiterate through the entire list each time to find a matching object, which would be a helluvalot of compares.

That said, List might keep an index of each object along with the count.

Jonathan seems to have a better idea, if he would elaborate?

It would be better to just keep a count of where you're up to in the foreach though, simpler, and more adaptable.

link|flag
Not sure on the heavy downvoting. Sure performance makes this prohibitive but you did answer the question! – Graphain Oct 2 at 21:15
vote up 3 vote down

@Crucible:

I'd consider firing anyone who did that over using a for loop, Do you understand what IndexOf has to do?

Hint: You added an extra O(N) loop to each iteration.

Btw, to answer the OP's question about how IndexOf works in a List, it internally calls Array.IndexOf() on the lists internal array.

Array.IndexOf() performs a for loop on the array until it finds the matching item, then returns the index.

This is about the worst possible cludge anyone could ever do.

link|flag
2  
"Worst possible cludge anyone could ever do?" -- you've spent too much time in Seattle. ;-) – Troy DeMonbreun Sep 25 '08 at 19:14
vote up 0 vote down

Awesome I totally forgot to check the LINQ methods. Hmm appears to be a terrible library implementation though. I don't see why people are downvoting you though. You'd expect the method to either use some sort of HashTable of indices or even another SQL call, not an O(N) iteration...

Why? He is working with a List<T>, that's nothing special, its just a wrapper around an array.

You are confusing LINQ with LINQ to SQL.

link|flag
vote up 5 vote down

Literal Answer -- warning, performance may not be as good as just using an int to track the index. At least it is better than using IndexOf.

You just need to use the indexing overload of Select to wrap each item in the collection with an anonymous object that knows the index. This can be done against anything that implements IEnumerable.

        System.Collections.IEnumerable collection = Enumerable.Range(100, 10);

        foreach (var o in collection.OfType<object>().Select((x, i) => new {x, i}))
        {
            Console.WriteLine("{0} {1}", o.i, o.x);
        }
link|flag
The only reason to use OfType<T>() instead of Cast<T>() is if some items in the enumeration might fail an explicit cast. For object, this will never be the case. – dahlbyk Jun 26 at 0:09
Sure, except for the other reason to use OfType instead of Cast - which is that I never use Cast. – David B Jun 26 at 2:02
vote up 1 vote down

I disagree with comments that a for loop is a better choice in most cases.

foreach is a useful construct, and not replaceble by a for loop in all circumstances.

For example, if you have a DataReader and loop through all records using a foreach it automatically calls the Dispose method and closes the reader (which can then close the connection automatically). This is therefore safer as it prevents connection leaks even if you forget to close the reader.

(Sure it is good practise to always close readers but the compiler is not going to catch it if you don't - you can't guarantee you have closed all readers but you can make it more likely you won't leak connections by getting in the habit of using foreach.)

There may be other examples of the implicit call of the Dispose method being useful.

link|flag
Good point and something I wasn't aware of. – Graphain Jun 26 at 2:58

Your Answer

Get an OpenID
or

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