共用方式為


HOW TO:建立整數清單的 Iterator 區塊 (C# 程式設計手冊)

在這個範例中,會使用整數陣列來建立 SampleCollection 清單。 for 迴圈會逐一查看集合並傳回每個項目的值。 接著會使用 foreach 迴圈來顯示集合中的項目。

範例

// Declare the collection:
public class SampleCollection
{
    public int[] items;

    public SampleCollection()
    {
        items = new int[5] { 5, 4, 7, 9, 3 };
    }

    public System.Collections.IEnumerable BuildCollection()
    {
        for (int i = 0; i < items.Length; i++)
        {
            yield return items[i];
        }
    }
}

class MainClass
{
    static void Main()
    {
        SampleCollection col = new SampleCollection();

        // Display the collection items:
        System.Console.WriteLine("Values in the collection are:");
        foreach (int i in col.BuildCollection())
        {
            System.Console.Write(i + " ");
        }

        // Keep the console window open in debug mode.
        System.Console.WriteLine("Press any key to exit.");
        System.Console.ReadKey();
    }
}
/* Output:
    Values in the collection are:
    5 4 7 9 3        
*/

請參閱

工作

HOW TO:建立泛型清單的 Iterator 區塊 (C# 程式設計手冊)

參考

Iterator (C# 程式設計手冊)

使用 Iterator (C# 程式設計手冊)

Array

yield (C# 參考)

概念

C# 程式設計手冊