Working on implementing the IEnumerable
interface.
I actually found two methods that need to be implemented:
public IEnumerator<Item> GetEnumerator()
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
Not sure why I need to implement these two methods (which look quite similar). Could anyone explain it to me?
Part of the answer is "for historical reasons".
The
IEnumerable
interface has been around since .NET 1.1, whereas generics (and thusIEnumerable<T>
) were added in .NET 2.IEnumerable<T>
extendsIEnumerable
, which was a sensible decision because it allows you to use anIEnumerable<T>
in code that was already written to take anIEnumerable
.But that means that to implement
IEnumerable<T>
(which includes theIEnumerator<T> GetEnumerator()
method) you also have to implementIEnumerable
(which includes theIEnumerator GetEnumerator()
method).As Servy noted, it's not that big a deal, because you can just do this:
where the non-explicit implementation
GetEnumerator
is the one whose return type isIEnumerator<T>
.