QLNet.TimeGrid.size C# (CSharp) Метод

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

public size ( ) : int
Результат int
        public int size()
        {
            return times_.Count;
        }

Usage Example

Пример #1
0
        public Path(TimeGrid timeGrid, Vector values) {
            timeGrid_ = timeGrid;
            values_ = (Vector)values.Clone();
            if (values_.empty())
                values_ = new Vector(timeGrid_.size());

            if (values_.size() != timeGrid_.size())
                throw new ApplicationException("different number of times and asset values");
        }
All Usage Examples Of QLNet.TimeGrid::size