BaseCollection<T>.GetEnumerator Method
Gets an enumerator over the collection.
Namespace: Microsoft.Rtc.Workflow.Utilities
Assembly: Microsoft.Rtc.Workflow (in Microsoft.Rtc.Workflow.dll)
Syntax
'Declaration
Public Function GetEnumerator As IEnumerator(Of T)
'Usage
Dim instance As BaseCollection
Dim returnValue As IEnumerator(Of T)
returnValue = instance.GetEnumerator()
public IEnumerator<T> GetEnumerator()
Return Value
Type: System.Collections.Generic.IEnumerator<T>
An enumerator for the collection.
Implements
IEnumerable<T>.GetEnumerator()