Skip to content

Instantly share code, notes, and snippets.

View y2bd's full-sized avatar
💭
Fine, thanks

Jason Lo y2bd

💭
Fine, thanks
View GitHub Profile
@y2bd
y2bd / onlyAudioslavePlease.cs
Last active December 14, 2015 16:28
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);
}