VelocityDbHashSetTTrimExcess Method |
Sets the capacity of this list to the size of the list (rounded up to nearest prime),
unless count is 0, in which case we release references.
This method can be used to minimize a list's memory overhead once it is known that no
new elements will be added to the list. To completely clear a list and release all
memory referenced by the list, execute the following statements:
list.Clear();
list.TrimExcess();
Namespace:
VelocityDb.Collection
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public:
void TrimExcess()
member TrimExcess : unit -> unit
See Also