Ejemplo n.º 1
0
 int GetSongStartIndex(HtmlAgilityPack.HtmlNodeCollection song)
 {
     for (int i = 0; i < song.Count; i++)
         if (System.Text.RegularExpressions.Regex.IsMatch(song.ElementAt(i).InnerText, "^\\d"))
             return i;
     throw new ArgumentException("No timestamp found");
 }