Queue: TrimToSize

TrimToSize

Sets the capacity to the actual number of elements in the Queue.



 Public Sub TrimToSize ( )

Remarks

This method can be used to minimize a queues memory overhead if no new elements will be added to the queue.

To reset a Queue to its initial state, call the Clear method before calling TrimToSize. Trimming an empty Queue sets the capacity of the Queue to the default capacity.

This method is an O(n) operation, where n is Count.

See Also

Project CorLib Overview

Class Queue Overview

Clear

Count