예제 #1
0
파일: Program.cs 프로젝트: JackMorris/LCS3
        static void Main(string[] args)
        {
            Countdown countdown = new Countdown(10, "Hello, world!");

            CountdownDisplay countdownDisplay = new CountdownDisplay();
            countdownDisplay.Subscribe(countdown);

            countdown.Start();
        }
예제 #2
0
 public void Subscribe(Countdown countdown)
 {
     countdown.CountdownComplete += PrintCountdownComplete;
 }