Is there a C# equivalent of Python's enumerate() and Ruby's each_with_index?
|
|
I keep this extension method around for this:
And use it like so:
|
|||||||||||||||||||
|
|
You can do the following
This will create an anonymous type value for every entry in the collect. It will have two properties
|
|||||||||||||||||||||
|
|
The C# foreach doesn't have a built in index. You'll need to add an integer outside the foreach loop and increment it each time.
Alternatively, you could use a standard for loop as follows:
|
|||||||||||
|
|
Aside from the LINQ answers already given, I have a "SmartEnumerable" class which allows you to get the index and the "first/last"-ness. It's a bit ugly in terms of syntax, but you may find it useful. We can probably improve the type inference using a static method in a nongeneric type, and implicit typing will help too. |
|||||
|
|
My solution involves a simple Pair class I created for general utility, and which is operationally essentially the same as the framework class KeyValuePair. Then I created a couple extension functions for IEnumerable called Ordinate (from the set theory term "ordinal"). These functions will return for each item a Pair object containing the index, and the item itself.
|
||||
|
|
|
I like being able to use foreach, so I made an extension method and a structure:
and an example use:
One nice thing is that if you are used to the Python syntax, you can still use it:
|
|||
|
|
|
No there is not. As other people have shown there are ways to simulate Ruby's behavior. But it is possible to have a type that implements IEnumerable that does not expose an index. |
|||
|
|
|
I just figured out interesting solution, what do you say guys:
usage:
I must say I like this. |
||||
|
|
|
This is your collection
Make a range of indexes for this collection
Use the range to iterate with index
|
|||
|
|
|
It depends on the class you are using. Dictionary<(Of <(TKey, TValue>)>) Class For Example Support This The Dictionary<(Of <(TKey, TValue>)>) generic class provides a mapping from a set of keys to a set of values. For purposes of enumeration, each item in the dictionary is treated as a KeyValuePair<(Of <(TKey, TValue>)>) structure representing a value and its key. The order in which the items are returned is undefined. foreach (KeyValuePair kvp in myDictionary) {...} |
|||
|
|
|
If you're using a collection you could use the indexOf() function inside of the foreach loop:
|
|||