Is there a difference performance or memory wise between
public string Id
{
get { return this.id; }
}
or
public string Id => this.id;
I prefer the look of => this.Id but I was wondering if I am doing something wrong?
Also, is there any issue with something like
public void Test() => this.id = "fdsafdsa";