Anonymous function is a type of function that does not has name. In other words, we can say that a function without name is known as anonymous function.
In C#, there are two types of anonymous functions:
- Lambda Expressions
- Anonymous Methods
C# Lambda Expressions
Lambda expression is an anonymous function which we can use to create delegates. We can use lambda expression to create local functions that can be passed as an argument. It is also helpful to write LINQ queries.
C# Lambda Expression Syntax
Example
Output:
Square: 25
C# Anonymous Methods
Anonymous method provides the same functionality as lambda expression, except that it allows us to omit parameter list. Let see an example.
Example
Output:
This is anonymous function
0 comments:
Post a Comment
Note: only a member of this blog may post a comment.