Whats the difference now between doing this:
public string Title { get; set; }
and this:
public string Title;
Back in the day people always said use accessor methods with private variables called by the public accessor, now that .net has made get; set; statements so simplified that they look almost the same without the private variable as just using a public only variable, so whats the point and difference?