FastQuant.DataSeriesIterator.GetNext C# (CSharp) Method

GetNext() public method

public GetNext ( ) : DataObject
return DataObject
        public DataObject GetNext() => this.current > this.index2 ? null : this.series.Get(this.current++);
    }