private List _dates; public List Dates { get { return _dates; } set { _dates = value; } }
OR
publi
It doesn't matter. The second is just sugar. I always use the second because it's cleaner, but every once in a while I need access to the backing value.