I've seen an operator => used in the following example:
public int Calculate(int x) => DoSomething(x);
or
public void DoSoething() => SomeOtherMethod();
I have never seen this operator used like this before except in lamba expressions.
What does the following do? Where, when should this be used?