Exemplo n.º 1
0
 public XmlSetSongCollection(List <Song> songs)
 {
     setSongs = new List <XmlSetSong>();
     foreach (Song song in songs)
     {
         XmlSetSong temp = new XmlSetSong(song);
         setSongs.Add(temp);
     }
 }
Exemplo n.º 2
0
 public void Insert(int index, XmlSetSong song)
 {
     setSongs.Insert(index, song);
 }