The operator =>stands for Lambda Expression :
A lambda expression is an anonymous function that can contain expressions and statements and can be used to create delegates or types of expressions tree.
- - = > , "". ( ), . - x = > x * x "x x x". :
static void Main(string[] args)
{
Func<int, int> func = x => x * x;
int j = func(5);
}