ListBox.IntegerCollection.IEnumerable.GetEnumerator Method

Definition

Retrieves an enumeration of all the integers in the ListBox.IntegerCollection.

 virtual System::Collections::IEnumerator ^ System.Collections.IEnumerable.GetEnumerator() = System::Collections::IEnumerable::GetEnumerator;
System.Collections.IEnumerator IEnumerable.GetEnumerator ();
abstract member System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
override this.System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
Function GetEnumerator () As IEnumerator Implements IEnumerable.GetEnumerator

Returns

An IEnumerator for the ListBox.IntegerCollection.

Implements

Remarks

This method creates an enumerator that contains a snapshot of the collection. You can change the collection by changing the enumerator; however, multiple enumerators can simultaneously access the same collection. Changing the collection (either directly or through another enumerator) can thus cause Current or MoveNext to throw an exception.

Two enumerators created from the same collection at the same time can contain different snapshots.

Removing objects from the enumerator also removes them from the collection.

Applies to

See also