public bool SongExists(SongBase song)
 {
     //return _scclient.Resolve.GetTrack(song.InternalName) != null;
     return(true);
 }
 public bool SongExists(SongBase song)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public bool SongExists(SongBase song)
 {
     return(File.Exists(song.InternalName));
 }