[This is preliminary documentation and is subject to change.]
Add an item to the tail of the CircularBuffer.
| C# |
public void Add( T item )
- item (T)
- The item to add.
If the buffer is full, then an item is removed from the head
of the buffer and discarded to make room.