What is the difference between the => operator for properties and auto property in C#?
I have properties like
public string Name => name;
but Resharper suggests that I convert them to auto properties instead:
public string Name { get; }
I do not see any added value from this. Is there any difference between the two?