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.

link|improve this question

Nope, just the for loop. – Matt Hinze Sep 4 '08 at 1:40
foreach casting retrieval is generally not going to me more optimized than just using index-based access on a collection, though in many cases it will be equal. The purpose of foreach is to make your code readable, but it (usually) adds a layer of indirection, which isn't free. – Brian Mar 26 '10 at 15:32
3  
I would say the primary purpose of foreach is to provide a common iteration mechanism for all collections regardless of whether they are indexable (List) or not (Dictionary). – Brian Gideon Jul 23 '10 at 15:59
Hi Brian Gideon - definitely agree (this was a few years ago and I was far less experienced at the time). However, while Dictionary isn't indexable, an iteration of Dictionary does traverse it in a particular order (i.e. an Enumerator is indexable by the fact it yields elements sequentially). In this sense, we could say that we are not looking for the index within the collection, but rather the index of the current enumerated element within the enumeration (i.e. whether we are at the first or fifth or last enumerated element). – Graphain May 3 '11 at 2:28
feedback

18 Answers

up vote 102 down vote accepted

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|improve this answer
feedback

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|improve this answer
1  
That doesn't "really" solve the problem. The idea is good but it doesn't avoid the additional counting variable – Atmocreations Dec 31 '09 at 11:52
isn't ++idx faster than idx++? Doesn't really matter in many loops, but an extension should use it? – jgauffin Jul 20 '10 at 19:14
@jgauffin: Not for integral types. – Danvil Sep 11 '10 at 14:13
7  
@jgauffin This isn't even an issue in an optimizing C++ compiler, let alone C#... – marr75 Oct 8 '10 at 15:07
3  
@jgauffin: Premature micro-optimization... the cause of many wasted hours, ha! – KTF Sep 14 '11 at 13:56
show 1 more comment
feedback

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|improve this answer
7  
Good point and something I wasn't aware of. – Graphain Jun 26 '09 at 2:58
2  
Thanks for pointing this out. Rather subtle. You can get more information at pvle.be/2010/05/foreach-statement-calls-dispose-on-ienumerator and msdn.microsoft.com/en-us/library/aa664754(VS.71).aspx. – Mark Meuer Jun 17 '11 at 14:22
feedback

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|improve this answer
1  
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 '09 at 0:09
5  
Sure, except for the other reason to use OfType instead of Cast - which is that I never use Cast. – David B Jun 26 '09 at 2:02
feedback
int index;
foreach (Object o in collection)
{
    index = collection.indexOf(o);
}

This would work for collections supporting IList.

link|improve this answer
hahah, didn't cross my mind at all, great, +1 :) – Marko Aug 10 '11 at 11:38
6  
Two problems: 1) This is O(n^2) since in most implementations IndexOf is O(n). 2) This fails if there are duplicate items in the list. – CodeInChaos Sep 14 '11 at 19:08
Note: O(n^2) means this could be disastrously slow for a big collection. – O'Rooney Nov 14 '11 at 0:58
feedback

You could wrap the original enumerator with another that does contain the index information.

foreach (var item in ForEachHelper.WithIndex(collection))
{
    Console.Write("Index=" + item.Index);
    Console.Write(";Value= " + item.Value);
    Console.Write(";IsLast=" + item.IsLast);
    Console.WriteLine();
}

Here is the code for the ForEachHelper class.

public static class ForEachHelper
{
    public sealed class Item<T>
    {
        public int Index { get; set; }
        public T Value { get; set; }
        public bool IsLast { get; set; }
    }

    public static IEnumerable<Item<T>> WithIndex<T>(IEnumerable<T> enumerable)
    {
        Item<T> item = null;
        foreach (T value in enumerable)
        {
            Item<T> next = new Item<T>();
            next.Index = 0;
            next.Value = value;
            next.IsLast = false;
            if (item != null)
            {
                next.Index = item.Index + 1;
                yield return item;
            }
            item = next;
        }
        if (item != null)
        {
            item.IsLast = true;
            yield return item;
        }            
    }
}
link|improve this answer
This won't actually return the index of the item. Instead, it will return the index inside the enumerated list, which may only be a sublist of the list, thereby giving you accurate data only when the sublist and the list are of equal size. Basically, any time the collection has objects in it not in the requested type your index will be incorrect. – Lucas B Jul 23 '10 at 13:11
@Lucas: No, but it will return the index of the current foreach iteration. That was the question. – Brian Gideon Jul 23 '10 at 13:32
feedback

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|improve this answer
2  
Not sure on the heavy downvoting. Sure performance makes this prohibitive but you did answer the question! – Graphain Oct 2 '09 at 21:15
1  
Another issue with this is that it only works if the items in the list are unique. – CodeInChaos Sep 14 '11 at 19:12
feedback

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|improve this answer
4) The case I've hit several times is something different that has to be done on the first or last pass--say a list of objects you are going to print and you need commas between items but not after the last item. – Loren Pechtel Aug 20 '10 at 23:01
feedback

Here's a solution I just came up with for this problem

Original code:

int index=0;
foreach (var item in enumerable)
{
    blah(item, index); // some code that depends on the index
    index++;
}

Updated code

enumerable.ForEach((item, index) => blah(item, index));

Extension Method:

    public static IEnumerable<T> ForEach<T>(this IEnumerable<T> enumerable, Action<T, int> action)
    {
        var unit = new Unit(); // unit is a new type from the reactive framework (http://msdn.microsoft.com/en-us/devlabs/ee794896.aspx) to represent a void, since in C# you can't return a void
        enumerable.Select((item, i) => 
            {
                action(item, i);
                return unit;
            }).ToList();

        return pSource;
    }
link|improve this answer
feedback

This is offtopic, as I do not have an answer to the OP, though it would be nice to have something like in mootools:

var array = [ 'foo', 'bar'];
array.each(function(field, index) {
  ...
});

Sorry can't make out anywhere in FAQ's or ? how to post an answer to a different branch on the thread. So this one is for a poster above, who suggested to use foreach with a DataReader, cause it closes the reader and eventually closes the connection. Didn't knew that one. Maybe he could post something about that, if his pattern turns up to stink less than mine. Specifically: Are command and datareader disposed, if the foreach closes the datareader? I alway did it this way (sry, for the basic stuff and nitpicking. do not feel offended).

System.Data.IDbConnection con = null;
System.Data.IDbCommand com = null;
System.Data.IDataReader dr = null;

try
{
   con = ...;
   com = con.CreateCommand();
   dr = com.ExecuteReader();
   while(dr.Read())
   {

   }
}
finally
{
   if (dr != null) { dr.Close(); dr.Dispose(); }
   if (com != null) com.Dispose();
   if (con != null) { con.Close(); con.Dispose(); }
}
link|improve this answer
feedback

This is how I do it, which is nice for its simplicity/brevity, but if you're doing a lot in the loop body obj.Value is gonna get old pretty fast.

foreach(var obj in collection.Select((item, index) => new { Index = index, Value = item }) {
    string foo = string.Format("Something[{0}] = {1}", obj.Index, obj.Value);
    ...
}
link|improve this answer
feedback

My solution for this problem is an extension method WithIndex(),

http://code.google.com/p/ub-dotnet-utilities/source/browse/trunk/Src/Utilities/Extensions/EnumerableExtensions.cs

Use it like

var list = new List<int> { 1, 2, 3, 4, 5, 6 };    

var odd = list.WithIndex().Where(i => (i.Item & 1) == 1);
CollectionAssert.AreEqual(new[] { 0, 2, 4 }, odd.Select(i => i.Index));
CollectionAssert.AreEqual(new[] { 1, 3, 5 }, odd.Select(i => i.Item));
link|improve this answer
I'd use a struct for the (index,item) pair. – CodeInChaos Sep 14 '11 at 19:18
feedback

How about something like this? Note that myDelimitedString may be null if myEnumerable is empty.

IEnumerator enumerator = myEnumerable.GetEnumerator();
string myDelimitedString;
string current = null;

if( enumerator.MoveNext() )
    current = (string)enumerator.Current;

while( null != current)
{
    current = (string)enumerator.Current; }

    myDelimitedString += current;

    if( enumerator.MoveNext() )
        myDelimitedString += DELIMITER;
    else
        break;
}
link|improve this answer
feedback

I just had this problem, but thinking around the problem in my case gave the best solution, unrelated to the expected solution.

It could be quite a common case, basically, I'm reading from one source list and creating objects based on them in a destination list, however, I have to check whether the source items are valid first and want to return the row of any error. At first-glance, I want to get the index into the enumerator of the object at the Current property, however, as I am copying these elements, I implicitly know the current index anyway from the current destination. Obviously it depends on your destination object, but for me it was a List, and most likely it will implement ICollection.

i.e.

var destinationList = new List<someObject>();
foreach (var item in itemList)
{
  var stringArray = item.Split(new char[] { ';', ',' }, StringSplitOptions.RemoveEmptyEntries);

  if (stringArray.Length != 2)
  {
    //use the destinationList Count property to give us the index into the stringArray list
    throw new Exception("Item at row " + (destinationList.Count + 1) + " has a problem.");
  }
  else
  {
    destinationList.Add(new someObject() { Prop1 = stringArray[0], Prop2 = stringArray[1]});
  }
}

Not always applicable, but often enough to be worth mentioning, I think.

Anyway, the point being that sometimes there is a non-obvious solution already in the logic you have...

link|improve this answer
feedback

For interest, Phil Haack just wrote an example of this in the context of a Razor Templated Delegate (http://haacked.com/archive/2011/04/14/a-better-razor-foreach-loop.aspx)

Effectively he writes an extension method which wraps the iteration in an "IteratedItem" class (see below) allowing access to the index as well as the element during iteration.

public class IndexedItem<TModel> {
  public IndexedItem(int index, TModel item) {
    Index = index;
    Item = item;
  }

  public int Index { get; private set; }
  public TModel Item { get; private set; }
}

However, while this would be fine in a non-Razor environment if you are doing a single operation (i.e. one that could be provided as a lambda) it's not going to be a solid replacement of the for/foreach syntax in non-Razor contexts.

link|improve this answer
feedback

better to use keyword continue safe construction like this

int i=-1;
for each (Object o in collection)
{
    ++i;
    ...
    continue; //<--- safe to call, index will be increased
    ...
}
link|improve this answer
feedback

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|improve this answer
feedback

I wasn't sure what you were trying to do with the index information based on the question. However, in C#, you can usually adapt the IEnumerable.Select method to get the index out of whatever you want. For instance, I might use something like this for whether a value is odd or even.

string[] names = { "one", "two", "three" };
var oddOrEvenByName = names
    .Select((name, index) => new KeyValuePair<string, int>(name, index % 2))
    .ToDictionary(kvp => kvp.Key, kvp => kvp.Value);

This would give you a dictionary by name of whether the item was odd (1) or even (0) in the list.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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