I have a list that should be completely removed once every frame on an interactive app.
I reserved a capacity to 10.000 items at the beginning to avoid the overhead of adding items one by one.
Then I want to remove all of them. Apparently using Clear() will set Capacity to 0. Does it? How do I keep the capacity then?