Exemple #1
0
 public SpotifyImage GetSmallestIcon()
 {
     if (Icons == null || Icons.Count == 0)
     {
         return(null);
     }
     return(Icons.Aggregate((agg, next) => next.Width * next.Height < agg.Width * agg.Height ? next : agg));
 }