Why not? http://songsincsharp.net

And of course, here is my own lame attempt at keeping up with the cool kids:

    class Me : Person
    {
        public override IEnumerable<Child> GetChildren()
        {
            return from lover in GetLovers()
                   from child in lover.GetChildren(child => child.Father == this)
                   where lover.Name != "Billie Jean"
                   select child;
        }
    }
Comments