vote up 3 vote down star
6

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!!

flag

62% accept rate
Doesn't SO have enough pointless "questions" already? How about asking how people make use of "if" statements? Or classes? int's, maybe? Lambdas are just a handy new feature in the language, on par with every other feature of the language. Do we need these rep-whoring questions all the time? – jalf Dec 13 '08 at 17:55
Jalf, I myself went through the code and wrote, and found that I'm using Lambdas in various interesting ways - compared to Ifs and whiles, Lambda is a much more powerful feature. Hence, I thought this post will help myself and others to learn more usages. – amazedsaint Dec 15 '08 at 6:30

8 Answers

vote up 3 vote down check

Returning an custom object:

var dude = mySource.Select(x => new {Name = x.name, Surname = x.surname});
link|flag
1  
Did you know, you can just do new {x.name, x.surname} ? The properties will be lowercase as in this example. – leppie Dec 13 '08 at 14:34
vote up -2 vote down

Casting a collection of objects.

foreach(MyCustomObject co in objects.Select(o => o As MyCustomObject))
{
    ...
}
link|flag
Check out Enumerable.Cast and Enumerable.OfType: msdn.microsoft.com/en-us/library/… – David B Dec 13 '08 at 14:18
This is not needed. Is it? – leppie Dec 13 '08 at 14:32
If any items in objects are not of type MyCustomObject, then the resulting sequence will contain nulls. Probably not what you'd want. – Earwicker Dec 13 '08 at 17:14
vote up 0 vote down

Creating an accumulator.

    static Func<int, int> Foo(int n)
    {
        return a => n += a;
    }

Note the closure usage here. it's creating an accumulator that "remembers" the value of n between calls - without a class or instance variable.

link|flag
vote up 0 vote down

To express an unnamed function.

link|flag
vote up 1 vote down

One line function

Func<int, int> multiply = x => x * 2;
int y = multiply(4);
link|flag
vote up 1 vote down

Here's a slightly different one - you can use them (like this) to simulate the missing "infoof"/"nameof" operators in C# - i.e. so that instead of hard-coding to a property name as a string, you can use a lambda. This means that it is validated at compile time (which strings can't be).

There is obviously a performance cost to this, hence "just for fun", but interesting...

link|flag
vote up 0 vote down

For aggregate operations with Linq:

public Double GetLengthOfElements(string[] wordArr) {

   double count = wordArr.Sum(word => word.Length);
   return count;
}

Sure beats using foreach

link|flag
vote up 1 vote down

With method invoker to update UI from a multi threaded componenet event

void Task_Progress(object sender,TaskProgressArgs  e)
{
    BeginInvoke(new MethodInvoker(() => UpdateProgress(e)));
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.