adspace


What is lambda expressions in c#?

Answer Posted / Ajay Kumar Rajak

Lambda expressions are anonymous functions that can be used inline within other code. They consist of a parameter list, an arrow token (=>), and the function body, all enclosed in parentheses. Lambda expressions enable functional programming constructs like higher-order functions and event handlers.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1141