"Shorten this property by defining it as expression-bodied."
Where the body of a property getter is a small single line, it can be written in a briefer format.
public string Property
{
get { return "something"; }
}should be 🡻
public string Property => "something";