Example #1
0
 public static Mp3Tag ExtractMp3Tag(string song)
 {
     string[] split = song.Split(new[] { "–" }, 2, StringSplitOptions.RemoveEmptyEntries);
     Mp3Tag tag = new Mp3Tag(
         split.Length > 1 ? split[1] : string.Empty,
         split[0]
         );
     return tag;
 }