Pour in your posts. I'll start with a couple, let us see how much we can collect.
To provide inline event handlers like
button.Click += (sender,args) =>
{
};
To find items in a collection
var dogs= animals.Where(animal => animal.Type == "dog");
For iterating a collection, like
animals.ForEach(animal=>Console.WriteLine(animal.Name));
Let them come!!