Exemplo n.º 1
0
 public Player(PlayList playList)
 {
     if (playList == null)
         throw new ArgumentNullException("playList");
     _playList = playList;
     _track = _playList.GetFirstTrack();
     State = PlayerStop.Instance;
 }
Exemplo n.º 2
0
 internal void SetState(PlayerState state)
 {
     if (state != null)
         State = state;
 }