Lambda Expressions in C#.Net made easy! | Expression Lambda | Statement Lambda | Codelligent

preview_player
Показать описание
In this video you will learn Lambda Expressions in C#.Net with the help of very simple examples.

The topics being covered:
00:00 – Intro
00:34 – Intro to Lambda
01:42 – Expression Lambda vs Statement Lambda
03:41 – DEMO : Using Expression Lambda and Statement Lambda

If you found this video helpful don’t forget to hit the Like button!
If you wish to join us for future learning, do Subscribe this channel and hit the Bell icon to get the future video notifications!

#Lambda #AnonymousMethod #DotNet

-----------------------------------------------------------------------------------------
We believe in - "Knowledge increases by sharing!!"

Who are we?
We are a bunch of IT professionals who love to teach apart from our regular coding work! 👬👫

Why this Channel?
In our career, we have noticed that many new programmers get confused while coding, even though they are aware of that concept. We help them understand the concept in our office. 🤗
So, we thought why not share these concepts in the same easy to understand way to the whole world.
Let every one who is starting their coding journey get to learn and become a better programmer! 😊

We have taught many people offline, and now trying to make an online presence to help wider audience. 💖

Let's Code!

#LoveForCoding #LoveForTeaching #Codelligent #LetsCode #India
-----------------------------------------------------------------------------------------

Рекомендации по теме
Комментарии
Автор

Thank you for these examples, this is probably the clearest I've had this concept explained so far

milkmeapollo
Автор

Wow, this is a great channel. Explanations are clear and concise. Everything is well illustrated

CGI_Patrice
Автор

So simple. And explained beautifully. Thank you man.😊

teenztown
Автор

Well explained! Can you make a series of C# and ASP.net Core tutorials from scratch? Your way of teaching is excellent and it is great to learn from you!

zdkcy
Автор

Great! Your way of teaching is fantastic! I would love to learn from you! Do you have any online tutorials?

jcwing
Автор

Great tutorial for a beginner like me!
One suggestion though you could just zoom the screen while recording so that things are clearly visible😊

pranavb
Автор

Well explained. But noticed when searching for any topic you mentioned your channel mostly not appear on list. Missing proper keywords(etc)? Check the ways to make your videos appear on search list. All the best

rohankatreddy
Автор

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
Func<int, int, bool> Test = (x, y) =>
{
var sum = x + y;
Console.WriteLine(sum);
return x < y;
};
Console.WriteLine(Test(4, 5));
}
}
}

kvelez
Автор

Great Video. you could have used a bit bigger font size. loved the video.

nishantkumar
Автор

I was waiting for you to whip out: var oddNumbers = numbers.Where(x => x % 2 != 0).ToList()

divanvanzyl
join shbcf.ru