C# Lambda ( => ) [duplicate]

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. The lambda expression x => x *
x is read “x goes to x times x.” This
expression can be assigned to a
delegate type as follows:

From the docs

the => operator has the same precedence as assignment (=) and is right-associative.

Leave a Comment