Expression Bodies

Expression bodied methods, which are declared using an expression rather than a full method body.

Single line statement which provides easy flexibility instead of method declaration.

static string GetFullName( string firstName, string lastName) =>
        $"{ firstName } { lastName }";

Leave a comment