Exemplo n.º 1
0
 public void Subscribe(Countdown countdown)
 {
     countdown.CountdownComplete += (c, countdownInfo) =>
         {
             var timeInSeconds = countdownInfo.TimeInSeconds;
             var message = countdownInfo.Message;
             System.Console.WriteLine("Countdown completed in {0} seconds: '{1}'", timeInSeconds, message);
         };
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Countdown countdown = new Countdown(10, "Hello, world!");

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

            countdown.Start();
        }