Accessing generic enumerator on arrays
Is it possible to access the generic enumerator on an array instance? I.e. what goes in place of the question marks to make this work:
PublicClass MyClassImplements IEnumerable(Of X)'Class X is declared elsewherePrivateFunction GetEnumerator()As IEnumerator(Of X)Implements IEnumerable(Of X).GetEnumerator
Return _stuff.?
EndFunction PrivateFunction GetEnumerator1()As System.Collections.IEnumeratorImplements IEnumerable.GetEnumerator
Return _stuff.GetEnumerator
EndFunction Private _stuff()As X = {...}EndClass
Thanks!
Ian Horwill

