C# language feature:
applies to
benefit
how to use
=>
followed by expressions and ;
example:
public string FirstName { get; set; }
public string SirName { get; set; }
public override string ToString() => $"{SirName}, {FirstName}";