Pages

Saturday, September 4, 2010

C# Lambda Expressions

A lambda expression simply defines an anonymous function. All lambda expressions use the lambda operator =>, which is read as "goes to". The left side of the lambda operator specifies the input parameters (if any) and the right side holds the expression or statement block.



Read more about lambda expressions here.

No comments:

Post a Comment