Chapter 20. Enumerators and Iterators

Enumerators and Enumerable Types

In Chapter 14, you saw that you can use a foreach statement to cycle through the elements of an array. In this chapter, you'll take a closer look at arrays and see why they can be processed by foreach statements. You'll also look at how you can add this capability to your own user-defined classes. Later in the chapter, I'll discuss the use of iterators.

Using the foreach Statement

When you use the foreach statement with an array, the statement presents you witheach element in the array, one by one, allowing you to read its value.

For example, the following code declares an array with four elements, and then uses a foreach loop to print out the values of the items:

int[] arr1 = { ...

Get Illustrated C# 2008 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.