示例#1
0
        /// <summary>
        /// Writes the value expressed as a <c>number</c>, which is the integer.
        /// </summary>
        /// <param name="dates">The dates at which the value is specified.</param>
        /// <param name="values">The value corresponding to each date.</param>
        /// <param name="startIndex">The index of the first element to write.</param>
        /// <param name="length">The number of elements to write.</param>
        public void WriteNumber(IList <JulianDate> dates, IList <int> values, int startIndex, int length)
        {
            const string PropertyName = NumberPropertyName;

            OpenIntervalIfNecessary();
            CesiumWritingHelper.WriteInteger(Output, PropertyName, dates, values, startIndex, length);
        }