コード例 #1
0
        static void Main(string[] args)
        {
            NotificationCollection notificationCollection = new NotificationCollection();
            NotificationBar        notificationBar        = new NotificationBar(notificationCollection);

            notificationBar.printNotifications();
            Console.ReadKey();
        }
コード例 #2
0
 public NotificationBar(NotificationCollection notification)
 {
     Notifications = notification;
 }