Skip to content

Instantly share code, notes, and snippets.

@y2bd
Last active December 14, 2015 16:28
Show Gist options
  • Save y2bd/5115020 to your computer and use it in GitHub Desktop.
Save y2bd/5115020 to your computer and use it in GitHub Desktop.
That feeling when something you have no idea would work works.
MediaLibrary m = new MediaLibrary();
IEnumerable<Song> songs = m.Songs.Where((song) => { return song.Artist.Name == "Audioslave"; });
foreach (Song s in songs) {
Debug.WriteLine(s.Name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment