Dispose() публичный Метод

public Dispose ( ) : void
Результат void
 internal void ClearCommandTimer()
 {
     if (commandTimer != null)
     {
         commandTimer.Dispose();
         commandTimer = null;
     }
 }
Пример #2
0
        internal void ClearCommandTimer()
        {
            if (commandTimer == null)
            {
                return;
            }

            commandTimer.Dispose();
            commandTimer = null;
        }