Interface IQueue<T>
- Namespace
- ComfileTech.jControlsNF4
- Assembly
- ComfileTech.jControlsNF4.dll
A last in, first out generic collection
public interface IQueue<T> : ICollection, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
T
The type of objects in the collection.
- Inherited Members
Properties
- Count
The number of items in the collection.
Methods
- Clear()
Removes all items from the collection.
- Dequeue()
Removes an item from the beginning.
- DequeueAndEnqueue(T)
Removes and item from the beginning, and then adds an item to the end.
- Enqueue(T)
Adds an item to the end.