Axiom.Math.Collections.BaseCollection.MoveNext C# (CSharp) Method

MoveNext() public method

Moves to the next item in the enumeration if there is one.
public MoveNext ( ) : bool
return bool
        public bool MoveNext()
        {
            position += 1;

            if ( position >= objectList.Count )
                return false;
            else
                return true;
        }