This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CountDownTimer | |
{ | |
private Stopwatch _startTimer; | |
private TimeSpan _delay; | |
private long _currentTick; | |
private readonly int _skipTicks; | |
private readonly Action<TimeSpan> _tickAction; | |
private readonly Action _endAction; |