LookupList<T>.GetEnumerator Method
Returns an enumerator that iterates through the LookupList<T>.
Namespace: Microsoft.SharePoint.Linq
Assembly: Microsoft.SharePoint.Linq (in Microsoft.SharePoint.Linq.dll)
Syntax
'Declaration
Public Function GetEnumerator As IEnumerator(Of T)
'Usage
Dim instance As LookupList
Dim returnValue As IEnumerator(Of T)
returnValue = instance.GetEnumerator()
public IEnumerator<T> GetEnumerator()
Return Value
Type: System.Collections.Generic.IEnumerator<T>
A IEnumerator<T> that can interate through the collection.
Implements
IEnumerable<T>.GetEnumerator()