Is there a difference between the two syntax below? Is there any reason that one of them is preferred over the other?
public string PropertyA { get => throw new NotSupportedException(); }
public string PropertyB { get { throw new NotSupportedException(); } }