How to loop through a collection that supports IEnumerable?

后端 未结 5 1436
不知归路
不知归路 2020-12-23 20:00

How to loop through a collection that supports IEnumerable?

5条回答
  •  一整个雨季
    2020-12-23 20:44

    Along with the already suggested methods of using a foreach loop, I thought I'd also mention that any object that implements IEnumerable also provides an IEnumerator interface via the GetEnumerator method. Although this method is usually not necessary, this can be used for manually iterating over collections, and is particularly useful when writing your own extension methods for collections.

    IEnumerable mySequence;
    using (var sequenceEnum = mySequence.GetEnumerator())
    {
        while (sequenceEnum.MoveNext())
        {
            // Do something with sequenceEnum.Current.
        }
    }
    

    A prime example is when you want to iterate over two sequences concurrently, which is not possible with a foreach loop.

提交回复
热议问题