示例#1
0
 public CountDown(long totaltime, long interval, TextView txttimecounter, ICountdownInterface countdownInterface) : base(totaltime, interval)
 {
     this.txttimecounter     = txttimecounter;
     this.countdownInterface = countdownInterface;
 }
示例#2
0
 public CountDown(ICountdownInterface countdownInterface) : base(0, 0)
 {
     this.countdownInterface = countdownInterface;
 }