Reset() приватный Метод

private Reset ( float l, bool r, Action t ) : void
l float
r bool
t Action
Результат void
Пример #1
0
        /// <summary>
        /// Creates a new Timer.
        /// </summary>
        /// <param name="tickLength">The amount of time between the timer's ticks.</param>
        /// <param name="repeats">Whether or not the timer repeats.</param>
        /// <param name="tick">An action to perform when the timer ticks.</param>
        /// <returns>The new Timer object or null if the timer pool is full.</returns>
        public Timer Create(float tickLength, bool repeats, Action <Timer> tick)
        {
            if (tickLength <= 0f)
            {
                throw new ArgumentException("tickLength must be greater than zero.");
            }
            if (tick == null)
            {
                throw new ArgumentNullException("tick");
            }

            lock (timers)
            {
                // get a new timer from the pool
                Timer t = timers.New();
                t.Reset(tickLength, repeats, tick);

                return(t);
            }
        }