英語で読む

次の方法で共有


Lookup<TKey,TElement>.GetEnumerator メソッド

定義

Lookup<TKey,TElement> を反復処理するジェネリック列挙子を返します。

public System.Collections.Generic.IEnumerator<System.Linq.IGrouping<TKey,TElement>> GetEnumerator ();

戻り値

IEnumerator<IGrouping<TKey,TElement>>

Lookup<TKey,TElement> の列挙子。

実装

次の例では、 を使用 GetEnumerator して のキーと値を反復処理する方法を Lookup<TKey,TElement>示します。 このコード例は、Lookup<TKey,TElement> クラスのために提供されている大規模な例の一部です。

// Iterate through each IGrouping in the Lookup and output the contents.
foreach (IGrouping<char, string> packageGroup in lookup)
{
    // Print the key value of the IGrouping.
    Console.WriteLine(packageGroup.Key);
    // Iterate through each value in the IGrouping and print its value.
    foreach (string str in packageGroup)
        Console.WriteLine("    {0}", str);
}

適用対象