ListCollectionView.GetEnumerator Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an object that you can use to enumerate the items in the view.
protected:
override System::Collections::IEnumerator ^ GetEnumerator();
protected override System.Collections.IEnumerator GetEnumerator ();
override this.GetEnumerator : unit -> System.Collections.IEnumerator
Protected Overrides Function GetEnumerator () As IEnumerator
Returns
An IEnumerator object that you can use to enumerate the items in the view.
Remarks
Enumerator instances are typically used for making asynchronous checks of the contents of a collection, or in this case, the contents of the view. For example, if you are about to start a foreach
iteration over the contents of the view, it may be better to obtain an asynchronous copy to ensure that the length of the view items does not change unexpectedly midway through the loop.