public static void Main() { AlbumInfo albumInfo = new AlbumInfo(); //Console.WriteLine("Last FM API Key: " + albumArt.getLastFMAPIKey()); albumInfo.loadAlbumInfo("The Chainsmokers", "#SELFIE"); Console.WriteLine("Album Title: " + albumInfo.getAlbumTitle()); Console.WriteLine("Track Number: " + albumInfo.getTrackNumber()); Console.WriteLine("Image URL: " + albumInfo.getAlbumImageURL()); }
public static void Main() { AlbumInfo albumInfo = new AlbumInfo(); //Console.WriteLine("Last FM API Key: " + albumArt.getLastFMAPIKey()); albumInfo.loadAlbumInfoAsync(@"The Chainsmokers", @"#SELFIE"); Console.WriteLine($@"Album Title: {albumInfo.getAlbumTitle()}"); Console.WriteLine($@"Track Number: {albumInfo.getTrackNumber()}"); Console.WriteLine($@"Image URL: {albumInfo.getAlbumImageURL()}"); }