Hello
I am trying to limit the size of my generic list so that after it contains a certain amount of values it wont add any more.
I am trying to do this using the Capacity property of the List object but this does not seem to work.
Dim slotDates As New List(Of Date)
slotDates.Capacity = 7
How would people advice limiting the size of a list?
I am trying to avoid doing a statement to check the size after an object is added
Regards