Click here to Skip to main content
6,629,377 members and growing! (22,664 online)
Email Password   helpLost your password?
Languages » C# » General     Intermediate License: The Code Project Open License (CPOL)

IEnumerable And IEnumerator interfaces

By sreejith ss nair

Using IEnumerable And IEnumerator interfaces in C#
C#, Windows, .NET 1.0, .NET 1.1VS.NET2003, Dev
Posted:9 Sep 2004
Updated:17 Jul 2008
Views:85,621
Bookmarked:26 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
25 votes for this article.
Popularity: 4.85 Rating: 3.47 out of 5
3 votes, 12.0%
1
3 votes, 12.0%
2
4 votes, 16.0%
3
7 votes, 28.0%
4
8 votes, 32.0%
5

Background

I have been seeing quite a number of posts in various discussion boards regarding ‘how to implement iterative access in a custom collection?’. Personally, for newbies, it was an alien step to appreciate the implementation of iterative access for their custom collection even though we have literatures and proven examples. This was the notion of writing an article on IEnumerable, IEnumerator interfaces, which facilitates the iterative access in a custom collection along with a well articulated graph and code sample.

Introduction

Unlike C++, .NET Framework facilitates accessing individual elements in the custom collection while implementing IEnumerable and IEnumerator interfaces. For example, it is a hassle free job to access types collected in an ArrayList. This had been eased by ArrayList class while implementing IEnumerable and IEnumerator interfaces.

Before continuing, let me explain the structure, members of the IEnumerable, IEnumerator interfaces. The IEnumerable interface contains an abstract member function called GetEnumerator() and return an interface IEnumerator on any success call. This IEnumerator interface will allow us to iterate through any custom collection.

Note: IEnumerator interface is meant to be used as accessors and is not helpful to make any changes in the collection or elements of the collection.

Presumably, any element in a collection can be retrieved through its index property. But instead of element index, the IEnumerator provides two abstract methods and a property to pull a particular element in a collection. And they are Reset(), MoveNext() and Current.

See the figure. This is how it works.

IEnumerator GetEnumerator()

The signature of GetEnumerator() is as follows:

public IEnumerator GetEnumerator()
{
            //return IEnumerator of our Custom Type
            return(IEnumerator)this;
}

Members of IEnumerator Interface

Reset(), MoveNext(), Current()

The signature of IEnumerator members is as follows:

  • void Reset()
  • bool MoveNext()
  • object Current

Refer to the figure which depicts three object instances in the custom collection.

The void Reset() method returns a void type and helps you to position the pointer just before the start point. Refer to the figure where I have three instances and the pointer is in the empty position. This reset method will also help you to reset the iteration pointer anywhere from the start position. For example, you are in the second instance and need to start from first. In addition to all, the reset method has to be called after any successive addition, deletion of elements in the collection.

public void Reset()
{
   //Get total number of element in a collection
   length=slist.Count;

   //Setting the pointer to just before the beginning of collection
   current=-1;
}

The bool MoveNext() method will help you to position the location of the required element in the collection while sending a flag value. And its objective is to inform the caller whether the current position holds any value or not. If it has, then MoveNext will return true or return false in case there is no value. In addition, the MoveNext will help you to position the first element in the collection after calling the reset method.

public bool MoveNext()
{
//this will increment the counter variable 
//and will check whether it is exceeding the actual length of our collection
return(++current<length);
}

The object Current property of IEnumerator interface will return an individual element of a given collection. This property is used to return an element in the collection by using the specified location pointer.

I.e. If you want to iterate through the collection, you need to call the MoveNext() method just before the Current. Otherwise, it will return the same element that the current property previously returns as output. In addition, if you are trying to enumerate for the first time, then you need to call methods and properties in this hierarchy: Reset() - > MoveNext () -> Current.

public object Current
{
          get
          {
          //Here "slist" is the collection and "current" is the location pointer
          return(slist[current]);
          }
}

Personally, I feel the code which is available along with the article is explanatory enough to give a clear picture for further tunings.

static  void Main()
{
          //Now this instance will contain a collection of MyClass Types
          Iterator It=new Iterator();
          //Am trying to access like normal array
          foreach(MyClass MY in It)
          {
                   Console.WriteLine("Name : "+MY.Name.ToString());
                   Console.WriteLine("Age : "+MY.Age.ToString());
          }
}

The aforementioned code is a part in my first example and tries to access the individual elements without implementing the required interfaces. But this code will fail to compile and the message is:

foreach statement cannot operate on variables of type 'CustomCollection.Iterator' 
because 'CustomCollection.Iterator' does not contain a definition 
for 'GetEnumerator', or it is inaccessible

I address the above compilation error in the second example while implementing IEnumearble, IEnumerator interfaces.

//Definition for IEnumerator.Reset() method.
public void Reset()
{
          Cnt=-1;
}
//Definition for IEnumerator.MoveNext() method.
public bool MoveNext()
{
     return (++ Cnt < ClassArray.Length);
}
//Definition for IEnumerator.Current Property.
public object Current
{
     get
    {
          return ClassArray[Cnt];
    }
}
//Definition for IEnumerable.GetEnumerator() method.
public IEnumerator GetEnumerator()
{
       return (IEnumerator)this;
}

See the downloads at the top of this article for the source code.

History

  • 9th September, 2004: Initial post
  • 17th July, 2008: Article updated

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

sreejith ss nair


Member
Sreejith S S Nair is a promising architect and has been programming since 2001. He is a certified professional in both MCPD and MCTS. He is a mathematics graduate with masters in computer science and international business.

He was born and bred in India and happen to spend some time in Europe. He loves to spend leisure with family & friends.

You can reach him at sreejithssnair@hotmail.com
Occupation: Architect
Company: Freelance
Location: India India

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 31 (Total in Forum: 31) (Refresh)FirstPrevNext
GeneralUnsafe PinmvpLuc Pattyn15:44 17 Jul '08  
GeneralWill be more good if you have provided much more comparison PinmemberN a v a n e e t h0:50 2 Oct '07  
Generalbeginner level PinmemberDynV11:58 21 Jun '07  
GeneralRe: beginner level Pinmembersreejith ss nair18:27 21 Jun '07  
GeneralRe: beginner level PinmemberDynV18:40 21 Jun '07  
GeneralRe: beginner level Pinmemberinyd18:10 25 Nov '07  
QuestionIenumerable PinmemberARTRAL1:44 15 Nov '06  
GeneralError running Example 2 ? Pinmembernewfon16:15 8 Jan '06  
GeneralRe: Error running Example 2 ? Pinmembersreejith ss nair5:52 7 Aug '06  
GeneralRe: Error running Example 2 ? PinmemberAfshin Ketabchi6:51 21 Oct '06  
GeneralGreat example, and downloadable Source #2 needs to be updated for .Net Framework 2.0 PinmemberFrank van de Ven2:15 30 Nov '05  
GeneralRe: Great example, and downloadable Source #2 needs to be updated for .Net Framework 2.0 Pinmembersreejith ss nair2:19 30 Nov '05  
General[Msg Deleted] PinmemberAllen Anderson15:47 22 Sep '05  
GeneralRe: good article Pinmembersreejith ss nair18:32 22 Sep '05  
GeneralGreat Example even for Newbies Pinmemberandyj121232:21 18 May '05  
GeneralGood one sreejit PinsussVspillai23:02 19 Sep '04  
GeneralRe: Good one sreejit Pinmembersreejith ss nair23:26 19 Sep '04  
GeneralMore explanation PinmemberSteven Campbell19:43 9 Sep '04  
GeneralRe: More explanation Pinmembersreejith ss nair22:33 9 Sep '04  
GeneralRe: More explanation Pinmembersreejith ss nair1:48 10 Sep '04  
GeneralRe: More explanation PinmemberColin Angus Mackay2:38 10 Sep '04  
GeneralRe: More explanation Pinmembersreejith ss nair2:44 10 Sep '04  
GeneralRe: More explanation PinmemberColin Angus Mackay3:00 10 Sep '04  
GeneralRe: More explanation Pinmembersreejith ss nair2:45 10 Sep '04  
GeneralRe: More explanation PinmemberColin Angus Mackay3:13 10 Sep '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 17 Jul 2008
Editor: Deeksha Shenoy
Copyright 2004 by sreejith ss nair
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project