Answer Posted / sameer
A lambda expression is an anonymous function that can
contain expressions and statements
Syntax: delegate int del(int i);
del myDelegate = x => x * x;
int j = myDelegate(5); //j = 25
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is routing in c#?
What are custom exceptions in C#?
What do you mean by generic class in c#?
What is orm in c#?
What are class fields?
What is lastindexof c#?
Define clr in .net?
How can it prevents DLL Hell assembly versioning in .NET?
What is a event in c#?
What is private virtual in C#?
What is poco c#?
What is jagged array in c#?
What is concrete class in c# with example?
What is asp net c#?
What is method overriding in c#