I was looking at someone's library the other day and they had this:
internal static string BaseUrl => "https://api.stripe.com/v1";
public static string Invoices => BaseUrl + "/invoices";
Isn't the => just acting like an assignment = operator? Wouldn't this be the same:
internal static string BaseUrl = "https://api.stripe.com/v1";
public static string Invoices = BaseUrl + "/invoices";
Never saw this before.