Is there anyway to foreach through a list from the end to the beginning rather than the beginning to then end (preferably without reordering the list).
Edit: There is one more step if you are dealing specifically with a
|
|||||||||||||
|
|
you could use a regular for loop, start at the end and decrement, instead of starting at the top and incrementing. something like:
|
|||||||||||||
|
|
You probably don't want to do anything complicated, so I would suggest just using a for loop. However, if it were somehow a requirement, you can certainly implement your own iterators for custom list iteration behavior. |
|||
|
|
|
It depends on what you mean by list.
|
|||
|
|
|
not c# but you can do it too :-)
|
|||
|
|
|
Error checking ommitted for clarity. Use a custom implementation of IEnumerable and IEnumerator. This will avoid unnecessary copying.
I would recommend to refactor the code sample to use generics. That way you could use this for any container type. |
|||
|
|
not tried but should work. |
|||
|
|