Advertisement
mathiasbk

Untitled

Sep 17th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.93 KB | None | 0 0
  1.   public string[] GetSpotifyInfo()
  2.         {
  3.  
  4.             if (Processrunning("spotify"))
  5.             {
  6.                 string[] info = { "1", "2" };
  7.                 foreach (Process proc in Process.GetProcesses())
  8.                 {
  9.                     if (proc.MainWindowTitle.StartsWith("Spotify - "))
  10.                     {
  11.                         string[] sang = proc.MainWindowTitle.Split('-');
  12.                         string[] lines = Regex.Split(sang[1], "–");
  13.                         return lines;
  14.                     }
  15.                     else if (proc.MainWindowTitle == "Spotify")
  16.                     {
  17.                         string[] nodata = { "No song" };
  18.                         return nodata;
  19.                     }
  20.                 }
  21.                 return info;
  22.             }
  23.             else
  24.             {
  25.                 string[] hei = { "No data" };
  26.                 return hei;
  27.             }
  28.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement