Here's a simple MSDN example.
delegate int del(int i);
del myDelegate = x => x * x;
int j = myDelegate(5); //j = 25
The input parameters are anything before the =>, and the expression is everything after the =>. Multiple input parameters are possible. Linq makes extensive use of lambdas.