Ejemplo n.º 1
0
        public static void SwapInstance()
        {
            TimerManager temp;

            temp = pInactiveInstance;
            pInactiveInstance = pInstance;
            pInstance         = temp;

            if (pInstance != null)
            {
                pInstance.RefreshTimer();
            }

            Debug.Print("TimerManager Swapped!");
        }