Expression-bodied members are members whose bodies are an expression rather than a statement block. In many common situations, they make code more readable and compact.
The following listing shows a traditional method declaration:
public override string ToString()
{
return "A textual representation of the object..";