+ 1
What is anonymous method in c#? Explain
please could explain the anonymous method in c#?
1 Respuesta
+ 2
In C#2.0
When you must use a function, but you need to use it once only, you define an anonymous function, in this way:
ageList.Find(delegate(int age) {return age>18});
In C#3.0
a simpler syntax called lambda expression is implemented, for example:
ageList.Find( age => age>18);
Reference:
https://www.c-sharpcorner.com/article/anonymous-methods-and-lambda-expressions-in-c-sharp/