How do I get the index of an object in a For Each...Next loop? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T23:03:32Zhttp://stackoverflow.com/feeds/question/205986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/205986/how-do-i-get-the-index-of-an-object-in-a-for-each-next-loop3How do I get the index of an object in a For Each...Next loop?Simon2008-10-15T19:02:53Z2008-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-2Answer by sebastian for How do I get the index of an object in a For Each...Next loop?sebastian2008-10-15T19:04:44Z2008-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-2Answer by divideandconquer.se for How do I get the index of an object in a For Each...Next loop?divideandconquer.se2008-10-15T19:05:06Z2008-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#2059979Answer by Mitchel Sellers for How do I get the index of an object in a For Each...Next loop?Mitchel Sellers2008-10-15T19:05:19Z2008-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#2060002Answer by Greg Hewgill for How do I get the index of an object in a For Each...Next loop?Greg Hewgill2008-10-15T19:05:59Z2008-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#2060075Answer by Joel Coehoorn for How do I get the index of an object in a For Each...Next loop?Joel Coehoorn2008-10-15T19:07:33Z2008-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<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#2060690Answer by John Chuckran for How do I get the index of an object in a For Each...Next loop?John Chuckran2008-10-15T19:27:38Z2008-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#2061300Answer by balexandre for How do I get the index of an object in a For Each...Next loop?balexandre2008-10-15T19:41:12Z2008-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>