FastQuant.DataSeriesIterator.GetNext C# (CSharp) 메소드

GetNext() 공개 메소드

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