up vote 23 down vote favorite
10
share [g+] share [fb]

Can anyone explain IEnumerable and IEnumerator to me?

for example, when to use it over foreach? what's the difference between IEnumerable and IEnumerator? Why do we need to use it?

link|improve this question

11% accept rate
feedback

7 Answers

for example, when to use it over foreach?

You don't use IEnumerable "over" foreach. Implementing IEnumerable makes using foreach possible.

When you write code like:

foreach (Foo bar in baz)
{
   ...
}

it's functionally equivalent to writing:

IEnumerator bat = baz.GetEnumerator();
while (bat.MoveNext())
{
   bar = (Foo)bat.Current()
   ...
}

By "functionally equivalent," I mean that's actually what the compiler turns the code into. You can't use foreach on baz in this example unless baz implements IEnumerable.

IEnumerable means that baz implements the method

IEnumerator GetEnumerator()

The IEnumerator object that this method returns must implement the methods

bool MoveNext()

and

Object Current()

The first method advances to the next object in the IEnumerable object that created the enumerator, returning false if it's done, and the second returns the current object.

Anything in .Net that you can iterate over implements IEnumerable. If you're building your own class, and it doesn't already inherit from a class that implements IEnumerable, you can make your class usable in foreach statements by implementing IEnumerable (and by creating an enumerator class that its new GetEnumerator method will return).

link|improve this answer
3  
I think when the original poster said "over foreach", he meant "when should I call GetEnumerator() / MoveNext() explicitly instead of using a foreach loop." For what it's worth. – mquander Feb 17 '09 at 19:46
1  
Ah, I think you're right. Well, the answer's implicit in my post: it doesn't matter, since that's what the compiler does anyway. So do what's easiest, i.e. use foreach. – Robert Rossney Feb 23 '09 at 19:27
1  
excellent explanation! – mkg May 7 '09 at 12:24
finally an explantion that makes sense. Thank you! :) – Mantisimo Mar 29 '11 at 15:50
This answer does not tell the whole story. Enumerable objects need not implement IEnumerable; they only need to have a GetEnumerator method that returns an instance of a type that in turn has a bool MoveNext() method and a Current property of any type. This "duck typing" approach was implemented in C# 1.0 as a way to avoid boxing when enumerating value-type collections. – phoog Jan 9 at 15:08
feedback

IEnumerable implements GetEnumerator. When called, that method will return an IEnumerator which implements MoveNext, Reset and Current.

Thus when your class implements IEnumerable, you are saying that you can call a method (GetEnumerator) and get a new object returned (an IEnumerator) you can use in a loop such as foreach.

link|improve this answer
feedback

Inheriting from IEnumerable means your class returns an IEnumerator object:

public class People : IEnumerable
{
    IEnumerator IEnumerable.GetEnumerator()
    {
		// return a PeopleEnumerator
    }
}

Inheriting from IEnumerator means your class returns the methods and properties for iteration:

public class PeopleEnumerator : IEnumerator
{
    public void Reset()...

    public bool MoveNext()...

    public object Current...
}

That's the difference anyway.

link|improve this answer
Nice, this explains (together with the other posts) how to convert your class into one that you can use "foreach" on to iterate over its contents. – Gravitas Nov 14 '10 at 23:46
feedback

Implementing IEnumerable enables you to get an IEnumerator for a list.

IEnumerator allows foreach style sequential access to the items in the list, using the yield keyword.

Before foreach implementation (in Java 1.4, for example), the way to iterate a list was to get an enumerator from the list, then ask it for the "next" item in the list, for as long as the value returned as the next item is not null. Foreach simply does that implicitly as a language feature, in the same way that lock() implements the Monitor class behind the scenes.

I expect foreach works on lists because they implement IEnumerable.

link|improve this answer
if its for a list why can't I just use foreach? – Kevin L Feb 17 '09 at 19:15
Seriously you downvoted me for this? Read up on foreach for more specific details. MSDN is probably the best source of info on this subject. – Neil Barnwell Feb 17 '09 at 19:16
@Neil, for what it's worth, I share your sentiment (perhaps better delete my response before that to gets downvoted) – Lieven Feb 17 '09 at 19:20
.Net duck types the foreach statement, but IEnumerable/IEnumerable<T> is the appropriate way to say that your class can be enumerated. – sixlettervariables Feb 17 '09 at 19:22
no i didnt downvote... – Kevin L Feb 17 '09 at 19:30
show 3 more comments
feedback

An object implementing IEnumerable allows others to visited each of its own items through an enumerator. An object implementing IEnumerator is the doing the iteration. It's looping over an enumerable object.

Think of enumerable objects as of lists, stacks, trees.

link|improve this answer
feedback

Implementing IEnumerable essentially means that the object can be iterated over. This doesn't necessarily mean it is an array as there are certain lists that can't be indexed but you can enumerate them.

IEnumerator is the actual object used to perform the iterations. It controls moving from one object to the next in the list.

Most of the time, IEnumerable & IEnumerator are used transparently as part of a foreach loop.

link|improve this answer
feedback

Agreed to the above mentioned reasons. However to sum up:

  1. The interface when implemented makes your class available for Iteration. Use Foreach seemlessly... Wohoooo..
  2. LINQ... These iterators have been designed to be highly efficient for Linq Queries. Flatten up your LINQ outputs using selectMany and work on those while you are dealing with huge amount of data.
  3. GetEnumerator() .. A Generic Enumerator for any collection... ain't that exciting.. ?
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.