C# Lambda Expressions

preview_player
Показать описание
Demonstrates C# lambda expressions.
Рекомендации по теме
Комментарии
Автор

The best explanation of Lambdas I've seen - super easy to follow. Also, this video prompted me to check out some of your others, and I must say...well done. You pack a lot of content into relatively short videos, give a nice level of background info, and explain things in a very understandable fashion. ++

JoeSchrag
Автор

Wow. That's a lot simpler than other explanations. 

shawn
Автор

Excellent. Most videos on YT are 20 mins + to explain this. This nails it in the first three minutes.

cianliddy
Автор

As your last name is and so are your explanations. Great work for the betterment of the mankind and people like us who even after going through 12 pages of MSDN don't get it. Thank you Mr. King

kohlismunishk
Автор

Perfect explanation on why the heck I would ever want to use delegates! You save me from thinking that delegates are pointless. Thanks!!

PatrickHoodDaniel
Автор

Really thank you for this nice and simple explanation for such not simple concept, appreciated and thanks again.

ga
Автор

Love the way you explain this. That was hilarious.

tryhardnoob
Автор

you are explaning may be the most complex problems step by step and making it crystal clear! I'm watching getting and benefit from your videos after 12 years it's strange actually. I have a technical job interview today thank you for your to the point videos. Hope to see you produce new content on software in future

spectra
Автор

What a relief. Best explanation so far. Thanks Jamie.

dannychenko
Автор

What a great way to explain Lambda's by they way you pasted the Method into the argument. It has always baffled me why so much of the training related to C# concepts can be so bad. In other words, it is never explained in a way that cements the conceptual idea of what is going on as yours did. I agree, nice job.

ApostolypseNow
Автор

This is the best explanation of lambda expressions I've seen so far. You should do a video on NHibernate (mapping options, etc., ).

ManeOuattara
Автор

the best explanation so far on delegate!!!!

lukica
Автор

"just get rid of all that!" quotable.

terryphi
Автор

nice videos, I just wanted to add that you can use more than one parameter in a lambda expression, below I give an example...
 
delegate double myMath(double a, double b);
class program
{
    static void main()
    {
        myMath c = (a, b) =>Math.Sqrt ( Math.Pow(a, 2) + Math.Pow(b, 2));
        double val = c(2.36, 6.8);
       
    }
}

PaganSteve
Автор

Woooow, the best explanation I've ever seen :) thnx

mrbalci
Автор

Best explanation. I was struggling hard to understand wth a lamba was. Now I understand when I see

TraceguyRune
Автор

thanks for the very straight forward explanation!

haimejoseph
Автор

Great explanation! It's a shame this creator doesn't do videos anymore.

waynegreen
Автор

Probably the simplest and glass-clear lambda expression explanation video on the entire youtube

pavelstreletsky
Автор

Thanks for this, now I finally understand Lambda expressions.

whelbe