what are Lamba Expressions in dotnet framework
Loading
what are Lamba Expressions in dotnet framework
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
sasikala sPosted May 28, 2025, 5:06 AM
In .NET Framework, lambda expressions are a concise way to represent anonymous methods (methods without a name) using a special syntax. They are widely used in LINQ (Language Integrated Query), delegates, and event handling.
Example
Func square = x => x * x;
Console.WriteLine(square(5)); // Output: 25
Benefits