C# LAMBDA Expressions and ANONYMOUS Functions Tutorial | 2021

preview_player
Показать описание
In this video, you will learn about Lambda Expressions as well as Anonymous Function in C#

An anonymous method is a method without a name. Anonymous methods in C# can be defined using the delegate keyword and can be assigned to a variable of the delegate type.

This means we don't have to define a method of our own each time we want to call a method that needs a delegate, since maybe we want to call it once, so defining a dedicated delegate every time we need one can ruin the code structure very fast.

We will also learn about Lambda expression, which will simplify the creation of anonymous methods even more!.
The difference between an expression lambda and a statement lambda is on the left side of the goes to operator an expression lambda will have an expression (one line of code) where a statement lambda will have a code block { some lines of code }.
Anonymous methods can help us to write the code blocks in-line, where delegates are required.
In C#3.0 Lambda expressions were introduced. It provides a simple, more compact, functional syntax to write anonymous methods.
“Click”

The word lambda is taken from the lambda calculus, where everything is expressed in terms of functions.

We will be using lambda expressions to create anonymous functions/methods.

To create a lambda expression,

We need to use the lambda declaration operator (also read as “goes into or goes to”) to separate the lambda's parameter list from its body.

A lambda expression can have one of the following two forms:
-Expression lambda that has an expression (one line of code) as its body.
-Statement lambda that has a statement block (executing more than one line of code) as its body:

tutorialsEU offers you free video tutorials about programming and development for complete beginners up to experienced programmers.
This includes C#, Unity, Python, Android, Kotlin, Machine Learning, etc.
Рекомендации по теме
Комментарии
Автор

Probably the clearest explanation of Lamdas that I have seen.

colins
Автор

I don't know if it's because it's directed for beginners, you're probably already aware that
at 12:07 you don't need to write the if else statement at all, just put return keyword before the condition written in the if. Less typing :)

justynak.
Автор

This was an awesome explanation. You kept it clear and simple. Plus you showed exactly how the functions were being used so nothing was left to be guessed.

psychoclips
Автор

Could you please do some more tutorials on basics of Kotlin in Android Studio

shaurya
Автор

Hey man how can I call function inside lamda expression?

ghosthunter
Автор

In other words, a delegate is contract for methods as an interface is a classes, isn't it?

Jel.Awesh.M