private List _dates; public List Dates { get { return _dates; } set { _dates = value; } }
OR
publi
Both are basically the same because of how .NET compiles automatic properties. Automatic properties became available with .NET 3.5.