Dev2.Data.Binary_Objects.ListIndexIterator.FetchNextIndex C# (CSharp) Method

FetchNextIndex() public method

public FetchNextIndex ( ) : int
return int
        public int FetchNextIndex()
        {
            _curPos++;

            _curValue = IndexList.Indexes[_curPos - 1];

            return _curValue;
        }