コード例 #1
0
ファイル: Timer.cs プロジェクト: joaotiagoms/basic-coding
 public Timer()
 {
     //this.hours = new ClockHand(24);
     this.seconds   = new ClockHand(60);
     this.hundreths = new ClockHand(100);
 }
コード例 #2
0
 public Timer()
 {
     this.hundredths = new ClockHand(100);
     this.seconds    = new ClockHand(60);
 }
コード例 #3
0
        public Timer()
        {
            this.centiSeconds = new ClockHand(100);

            this.seconds = new ClockHand(60);
        }