Click or drag to resize
CappedQueueTEnqueue Method
Adds an object to the end of the queue.

Namespace: Network.Sim.Miscellaneous
Assembly: Network.Sim (in Network.Sim.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void Enqueue(
	T item
)

Parameters

item
Type: T
The element to add to the end of the queue.
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown if the specified element could not be added to the queue because the maximum capacity has been reached.
See Also