the operator =>
has nothing to do with linq - it's a lambda expression. It's used to create anonymous functions, so you don't need to create a full function for every small thing.
so the expression:
s => s + 5
could be translated to:
int fun(int s)
{
return s + 5;
}