コード例 #1
0
 public YouTubeChannel(String name, IPlayAlghoritm playAlghoritm)
 {
     this.name          = name;
     this.videos        = new Dictionary <String, YouTubeVideo>();
     this.subscribers   = new List <IObserver>();
     this.playAlghoritm = playAlghoritm;
     this.subscribedTo  = new Dictionary <String, YouTubeChannel>();
     this.notifications = new List <Notification>();
     this.playlists     = new Dictionary <String, Playlist>();
 }
コード例 #2
0
 public Playlist(String name, IPlayAlghoritm playAlghoritm)
 {
     this.name          = name;
     this.videos        = new Dictionary <String, YouTubeVideo>();
     this.playAlghoritm = playAlghoritm;
 }