fCraft.ChatTimer.AddTimerToList C# (CSharp) Method

AddTimerToList() static private method

static private AddTimerToList ( [ timer ) : void
timer [
return void
        static void AddTimerToList( [NotNull] ChatTimer timer ) {
            if( timer == null ) throw new ArgumentNullException( "timer" );
            lock( TimerListLock ) {
                Timers.Add( timer.ID, timer );
            }
        }