Axiom.Math.Collections.BaseCollection.MoveNext C# (CSharp) Метод

MoveNext() публичный Метод

Moves to the next item in the enumeration if there is one.
public MoveNext ( ) : bool
Результат bool
        public bool MoveNext()
        {
            position += 1;

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