예제 #1
0
 public void Play(string song)
 {
     if (SpotifyLocalAPIClass.IsValidSpotifyURI(song))
     {
         musicHandler.PlayURL(song);
     }
     else
     {
         Console.WriteLine("Wrong format: " + song + " is not a spotify URI");
     }
 }