Possible Duplicate:
Can anyone explain IEnumerable and IEnumerator to me?
What are the differences between IEnumerator and IEnumerable?
What are the differences between IEnumerator and IEnumerable? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
IEnumerable is an interface that defines one method GetEnumerator which returns an IEnumerator interface, this in turn allows readonly access to a collection. A collection that implements IEnumerable can be used with a foreach statement. Definition
|
|||||||||||
|
|
An An Which do you use? The only reason to use For a look at what an enumerator (implementing |
|||
|
|
|
An An |
|||||||
|
|
IEnumerable and IEnumerator are both interfaces. IEnumerable has just one method called GetEnumerator. This method retuns (as all methods return something including void) another type which is an interface and that interface is IEnumerator. When you implement enumerator logic in any of your collection class, you implement IEnumerable (either generic or non generic). IEnumerable has just one method whereas IEnumerator has 2 methods (MoveNext and Reset) and a property Current. For easy understanding consider IEnumebale a box that contains IEnumerator inside it (though not through inheritance or containment). See the code for better understanding:
|
||||
|
|