This blog shows on how to u Lambda Expressions in C#
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Expression<del> myET = x => x * x;
}
}
}
The => operator has the same precedence as assignment (=) and is right-associative.