could someone explain me what\'s the idea behind using Auto-Implemented Properties c#?
public class Customer { public int ID { get; set; } p
Properties can be databound, whereas fields can not.