Esempio n. 1
0
 public void Subscribe(Clock theClock)
 {
     theClock.SecondChanged += new Clock.SecondChangeHandler(WriteLogEntry);
 }
Esempio n. 2
0
 // given a clock, subscribe to
 // its SecondChangeHandler event
 public void Subscribe(Clock theClock)
 {
     theClock.SecondChanged += new Clock.SecondChangeHandler(TimeHasChanged);
 }