CorLib  

IEnumerator

IEnumerator overview

Public:

Properties:
Current (get) This returns the current item of the enumeration. The current item is called after a successful MoveNext.  
Methods:
MoveNext Requests the enumerator moves to the next item being enumerated. Returns True on success, False otherwise. This is called prior to Current. If this is successful, Current will be called.  
Reset Requests the enumerator resets itself to begin enumerating from the beginning.  

See Also