System.Collections.Queue.Count Property

Gets the number of elements contained in the Queue.

Syntax

public virtual int Count { get; }

Value

Documentation for this section has not yet been entered.

Remarks

The capacity of a Queue is the number of elements that the Queue can store. Queue.Count is the number of elements that are actually in the Queue.

The capacity of a Queue is always greater than or equal to Queue.Count. If Queue.Count exceeds the capacity while adding elements, the capacity is automatically increased by reallocating the internal array before copying the old elements and adding the new elements. The new capacity is determined by multiplying the current capacity by the growth factor, which is determined when the Queue is constructed. The capacity of the Queue will always increase by a minimum value, regardless of the growth factor; a growth factor of 1.0 will not prevent the Queue from increasing in size.

The capacity can be decreased by calling Queue.TrimToSize.

Retrieving the value of this property is an O(1) operation.

Requirements

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