A new feature in C# 6.0 called an expression body.
It is shorthand to write a single line of code with a return value.
For example
int GetNumber() => 1;
Is an expression body statement which is the same as:
int GetNumber()
{
return 1;
}
You can read more here