/// <summary> /// Removes and dispose of all TimedQueues. /// Note: the TimedQueue will safely be removed and disposed. /// </summary> public static void Clear() { foreach (var q in m_map.ToList()) { Remove(q.Key); } }