InterviewSolution
Saved Bookmarks
| 1. |
What Are Lambda Expressions In Linq? |
|
Answer» A lambda expression is a function without a NAME that calculates and returns a single value. All lambda expressions use the lambda OPERATOR =>, which read as GOES to. The left SIDE of the lambda operator specifies the input parameters and the right side HOLDS the expression or statement block. A lambda expression is a function without a name that calculates and returns a single value. All lambda expressions use the lambda operator =>, which read as goes to. The left side of the lambda operator specifies the input parameters and the right side holds the expression or statement block. |
|