Exemple #1
0
        public void PlayFreelist(Playlist plist)
        {
            if (plist == null)
            {
                throw new ArgumentNullException(nameof(plist));
            }

            freeList.Clear();
            freeList.AddRange(plist.AsEnumerable());
            Reset();
        }
Exemple #2
0
 public void ClearTrash() => trashList.Clear();