In VB6 you can create your own enumerators by creating a function like this:
function Enumerator() as IUNKnown
Enumerator = col.[_NewEnum]
end function

how do I do this in VB.NET?