How do I get the index of an object in a For Each...Next loop? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:03:32Z http://stackoverflow.com/feeds/question/205986 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop 3 How do I get the index of an object in a For Each...Next loop? Simon 2008-10-15T19:02:53Z 2008-10-15T20:28:28Z <p>I'm using the following syntax to loop through a list collection:</p> <pre><code>For Each PropertyActor As JCPropertyActor In MyProperty.PropertyActors i = IndexOf(PropertyActor) Next </code></pre> <p>How do I get the index of the current object within the loop? I'm using IndexOf(PropertyActor) but this seems inefficient as it searches the collection when I already have the object available!</p> http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop/205994#205994 -2 Answer by sebastian for How do I get the index of an object in a For Each...Next loop? sebastian 2008-10-15T19:04:44Z 2008-10-15T19:04:44Z <p>just initialize an integer variable before entering the loop and iterate it...</p> <pre><code>Dim i as Integer For Each PropertyActor As JCPropertyActor In MyProperty.PropertyActors i++ Next </code></pre> http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop/205995#205995 -2 Answer by divideandconquer.se for How do I get the index of an object in a For Each...Next loop? divideandconquer.se 2008-10-15T19:05:06Z 2008-10-15T19:05:06Z <p>Add an index variable that you increase yourself for each iteration?</p> http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop/205997#205997 9 Answer by Mitchel Sellers for How do I get the index of an object in a For Each...Next loop? Mitchel Sellers 2008-10-15T19:05:19Z 2008-10-15T19:05:19Z <p>AFAIK since this pulls the object out of the collection, you would have to go back to the collection to find it.</p> <p>If you need the index, rather than using a for each loop, I would just use a for loop that went through the indices so you know what you have.</p> http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop/206000#206000 2 Answer by Greg Hewgill for How do I get the index of an object in a For Each...Next loop? Greg Hewgill 2008-10-15T19:05:59Z 2008-10-15T19:05:59Z <p>It might be easiest to just keep a separate counter:</p> <pre><code>i = 0 For Each PropertyActor As JCPropertyActor In MyProperty.PropertyActors ... i = i + 1 Next </code></pre> <p>As an aside, Python has a convenient way of doing this:</p> <pre><code>for i, x in enumerate(a): print "object at index ", i, " is ", x </code></pre> http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop/206007#206007 5 Answer by Joel Coehoorn for How do I get the index of an object in a For Each...Next loop? Joel Coehoorn 2008-10-15T19:07:33Z 2008-10-15T20:28:28Z <p>An index doesn't have any meaning to an IEnumerable, which is what the foreach construct uses. That's important because <code>foreach</code> may not enumerate in index order, if your particular collection type implements IEnumerable in an odd way. If you have an object that can be accessed by index <em>and</em> you care about the index during an iteration, then you're better off just using a traditional for loop:</p> <pre><code>for (int i=0;i&lt;MyProperty.PropertyActors.Length;i++) { //... } </code></pre> http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop/206069#206069 0 Answer by John Chuckran for How do I get the index of an object in a For Each...Next loop? John Chuckran 2008-10-15T19:27:38Z 2008-10-15T19:27:38Z <p>You could use the "FindIndex" method.</p> <pre><code>MyProperty.PropertyActors.FindIndex(Function(propActor As JCPropertyActor) propActor = JCPropertyActor) </code></pre> <p>But inside of a for each loop that seems like alot of extra overhead, and seems like the same resulting problem as the "IndexOf" method. I suggest using old fashioned index iteration. This way you have your index and your item.</p> <pre><code>Dim PropertyActor As JCPropertyActor For i As Integer = 0 To MyProperty.PropertyActors.Count - 1 PropertyActor = MyProperty.PropertyActors.Item(i) Next </code></pre> http://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop/206130#206130 0 Answer by balexandre for How do I get the index of an object in a For Each...Next loop? balexandre 2008-10-15T19:41:12Z 2008-10-15T19:41:12Z <p>Index is only available on List objects, so PropertyActor is not a List object and for that does not have an index, what you can do however is get the index of the List object that contains the current propertyActor object like:</p> <p><code>i = MyProperty.PropertyActors.IndexOf(PropertyActor)</code></p>