What is the difference between this:
public string Title { get; set; }
and this:
public string Title;
On the same day, people always said that they used access methods with private variables called a public accessory, now that .net made get; set; so simplified that they look almost the same without a private variable, since they use only a public variable, so what's the point and difference?
David source
share