ActivityCollection.IEnumerable.GetEnumerator Method

Definition

Returns an IEnumerator that iterates through the underlying IList.

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

Returns

An IEnumerator that can be used to iterate through the collection.

Implements

Remarks

An IEnumerator only allows for reading the data in the collection. You cannot use an IEnumerator to modify the underlying collection.

Applies to