Basically it says "I am giving you this (s,b)" and you are returning me s*b or something and if you are using lambda with expressions, but it can be something like this : I am giving you this (s,b) and do something with them in the statement block like :
{
int k = a+b;
k = Math.Blah(k);
return k;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A Lambda expression is an unnamed method written in place of a delegate instance. The compiler immediately converts the lambda expression to either :
- A delegate instance
- An expression Tree
delegate int Transformer(int i);
class Test{
static void Main(){
Transformer square = x => x*x;
Console.WriteLine(square(3));
}
}
We could rewrite it like this :
delegate int Transformer(int i);
class Test{
static void Main(){
Transformer square = Square;
Console.WriteLine(square(3));
}
static int Square (int x) {return x*x;}
}
A lambda expression has the following form :
(parameters) => expression or statement-block
In previous example there was a single parameter,x, and the expression is x*x
in our example, x corresponds to parameter i, and the expression x*x corresponds to the return type int, therefore being compatible with Transformer delegate;
delegate int Transformer ( int i);
A lambda expression's code can be a statement block instead of an expression. We can rewrite our example as follows :
x => {return x*x;}
An expression tree, of type Expression<T>, representing the code inside the lamda expression in a traversable object model. This allows the lambda expression to be intrepreted later at runtime (Please check the "Query Expression" for LINQ)