Difference Between Similar Terms and Objects

Difference Between IEnumerable and IEnumerator

Before we jump into the difference between IEnumerable and IEnumerator, let us first understand the terms Enumerator and Enumerable and when and why to use them.

Enumerable is a module used in the Array class that gives you Enumerator. The class itself doesn’t each method. In fact, it uses a method called ‘GetEnumerator’ that gives you an Enumerator to retrieve its item.

An Enumerator is an object that returns each item in a collection in a specific order, exactly as they are requested. The compiler generates code that uses an Enumerator, when you write a foreach loop in C#.

IEnumerator is an interface implemented by an enumerator and the enumerable class implements the IEnumerable interface.

 

What is Ienumerable?

IEnumerable is a basic interface used to obtain an object that knows how to enumerate (or iterate) over the elements in the collection.

It’s an implementation of the iterator pattern that provides a mechanism to traverse an object in the collection regardless of its internal structure. The IEnumerable interface represents an object that can be iterated over in a collection.

It uses only one method “GetEnumerator” that returns an enumerator class instance that implement IEnumerator interface.

 

What is Ienumerator?

The IEnumerator interface, one the other hand, declares two methods – Reset ( ) and MoveNext ( ) – and one property, Current. The MoveNext ( ) returns a Boolean vale that indicates the end of the list and helps position the first element in the list after calling the Reset ( ) method – it set the enumerator to its default position so that to re-iterate the list from the beginning.

The Current property can only be called through an instance of the IEnumerator interface and it returns the current element in the list.

 

Difference between IEnumerable and IEnumerator

Basics of IEnumerable and Ienumerator

Both IEnumerable and IEnumerator are interfaces that implement the iterator software design pattern in the .Net Framework together. The .Net Framework makes accessing individual elements in the custom collection while implementing IEnumerable and IEnumerator interfaces. The IEnumerable interface declares only one method called GetEnumerator which returns another type of interface called the IEnumerator interface for that particular collection. IEnumerator, on the other hand, is the base interface for all non-generic enumerators which are used to read the data in the collection. However, enumerators cannot be used to modify the underlying collection.

Methods

IEnumerable interface defines only one method GetEnumerator ( ) which is an instance method used on several different collection types. It gets an IEnumerator iterator that can be used to iterate over all the values from the collection. When you write a foreach loop in C# the code it generates calls the GetEnumerator method to create the Enumerator used by the loop.

IEnumerator, on the other hand, uses two methods MoveNext ( ) and Reset ( ) and a property Current. The MoveNext ( ) method takes the enumerator to the next element of the collection, whereas Reset ( ) method sets the enumerator to its default position which is before the first element in the collection.

Implementation

IEnumerable is a generic interface that provides an abstraction for looping over elements and by implementing the IEnumerable interface, a generic class essentially enables iteration via the IEnumerator interface. In doing so, these classes end up providing a common interface to retrieve an instance of an IEnumerator <T> object that supports all the basic set of navigation methods.

IEnumerator is the base interface for enumerators and the use of IEnumerable interface requires that the class must implement the IEnumerator. Both interfaces need to be implemented, if you want to provide support for foreach. The abstract class ‘AbstractEnumerator’ implements the IEnumerator interface.

Functionality of IEnumerable and IEnumerator

The IEnumerable interface, along with supporting IEnumerator interface, allows you to iterate over the elements in the stack using the ‘foreach’ statement. It is the basic interface used for collection type objects. The iteration begins with the top element in the stack and ends with the oldest element in the stack. Simply put, it represents an object that can be enumerated.

Together with the IEnumerator interface, they enable the ArrayList elements to be iterated in a standardized, sequential fashion, starting with the first element and going forward. The foreach statement uses the methods and properties of the IEnumerator interface to iterate all elements in a collection.

IEnumerable vs. IEnumerator: Comparison Chart

 

Summary of IEnumerable verses IEnumerator

In a nutshell, both IEnumerable and IEnumerator are interfaces used to enumerate or iterate a class that has a collection nature meaning they facilitate iterative access in a custom collection. IEnumerable is the generic interface available for collection type objects and by implementing the IEnumerable interface, a generic class essentially enables iteration via the IEnumerator interface. It uses only one method GetEnumerator that returns an enumerator class instance that implement IEnumerator interface. IEnumerator interface is meant to be used as accessors and it cannot be used to modify the underlying collection. It provides two abstract methods Reset ( ) and MoveNext ( ), and a property Current to call a particular element in a collection.

Latest posts by Sagar Khillar (see all)

Sharing is caring!


Search DifferenceBetween.net :




Email This Post Email This Post : If you like this article or our site. Please spread the word. Share it with your friends/family.


Leave a Response

Please note: comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.

References :


[0]Image credit: https://en.wikipedia.org/wiki/Read-copy-update#/media/File:Rcu_api.jpg

[1]Image credit: https://upload.wikimedia.org/wikipedia/commons/1/17/C_Sharp_Code.PNG

[2]Grand, Mark and Brad Merrill. Visual Basic Design Patterns. New Jersey: John Wiley & Sons, 2005. Print

[3]Golding, Tod. Professional .Net 2.0 Generics. New Jersey: John Wiley & Sons, 2005. Print

[4]Miller, Rick. C# Collections: A Detailed Presentation. Virginia: Pulp Free Press, 2012. Print

Articles on DifferenceBetween.net are general information, and are not intended to substitute for professional advice. The information is "AS IS", "WITH ALL FAULTS". User assumes all risk of use, damage, or injury. You agree that we have no liability for any damages.


See more about : ,
Protected by Copyscape Plagiarism Finder