GroupCollection.GetEnumerator メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コレクションを反復処理する列挙子を提供します。
public:
virtual System::Collections::IEnumerator ^ GetEnumerator();
public System.Collections.IEnumerator GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.IEnumerator
override this.GetEnumerator : unit -> System.Collections.IEnumerator
Public Function GetEnumerator () As IEnumerator
戻り値
Group 内のすべての GroupCollection オブジェクトを含む列挙子。
実装
注釈
コレクション内のオブジェクトを反復処理Groupできる列挙子を取得するメソッドを呼び出GetEnumeratorす代わりに、グループ反復コンストラクト (C# や For Each
... などforeach
) を使用する必要があります。Next
in Visual Basic) that is provided by your programming language.