Beispiel #1
0
 public Player(PlayList playList)
 {
     if (playList == null)
         throw new ArgumentNullException("playList");
     _playList = playList;
     _track = _playList.GetFirstTrack();
     State = PlayerStop.Instance;
 }