using System.Collections.Generic;
using System.Threading.Tasks;
protected string albumTitle;
protected List<string> tracks;
public CD(string newArtist, string newAlbumTitle)
albumTitle = newAlbumTitle;
tracks = new List<string>();
get { return albumTitle; }
public void AddTrack(string newTrack)
public List<string> Tracks
public string GetTextForm()
foreach(string t in tracks)