public void Play() { if (String.IsNullOrEmpty(_soundMaker.NowPlaying)) { if (songQueue.Count() > 0) { _soundMaker.Play(songQueue.FirstOrDefault()); songQueue.Remove(SongQueue.First()); } } }