I am trying to limit the size of my generic list so that after it contains a certain amount of values, it won\'t add any more.
I am trying to do this using the Capac
List has no such facility.
The capacity stuff is just a performance optimisation.
You are going to have to roll your own class, derive off list and override the Add implementation.