TimeSeriesLibrary.TSLibrary.CountTimeSteps C# (CSharp) Метод

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

public CountTimeSteps ( System.DateTime startDate, System.DateTime endDate, short unit, short stepSize ) : int
startDate System.DateTime
endDate System.DateTime
unit short
stepSize short
Результат int
        public int CountTimeSteps(DateTime startDate, DateTime endDate,
            short unit, short stepSize)
        {
            return TSDateCalculator.CountSteps(startDate, endDate, (TSDateCalculator.TimeStepUnitCode)unit, stepSize);
        }