Ejemplo n.º 1
0
        private static CandyCaneTimer EnsureTimer(Mobile from)
        {
            if (!m_ToothAches.TryGetValue(from, out var timer))
            {
                m_ToothAches[from] = timer = new CandyCaneTimer(from);
            }

            return(timer);
        }
Ejemplo n.º 2
0
		private static CandyCaneTimer EnsureTimer( Mobile from )
		{
			CandyCaneTimer timer;

			if ( !m_ToothAches.TryGetValue( from, out timer ) )
				m_ToothAches[from] = timer = new CandyCaneTimer( from );

			return timer;
		}