System.Collections.Queue.TrimToSize Method

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

Syntax

public virtual void TrimToSize ()

Remarks

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

To reset a Queue to its initial state, call the Queue.Clear method before calling Queue.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 Queue.Count.

Requirements

Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0