Click or drag to resize

CircularCollectionT Class

Represents a thread-safe, strongly typed, circular collection of objects.
Inheritance Hierarchy
SystemObject
  ShellBoost.Core.UtilitiesCircularCollectionT

Namespace:  ShellBoost.Core.Utilities
Assembly:  ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax
C#
public sealed class CircularCollection<T> : ICollection<T>, 
	IEnumerable<T>, IEnumerable

Type Parameters

T
The type of elements in the collection.

The CircularCollectionT type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCapacity
Gets the capacity.
Public propertyCount
Public propertyIsFull
Gets a value indicating whether this instance is full.
Public propertyTotalCount
Gets the total count.
Top
Methods
  NameDescription
Public methodAdd
Public methodClear
Public methodEnumerate
Enumerates this instance.
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodGetReverseEnumerator
Returns an enumerator that iterates through the collection in reverse order.
Public methodReverseEnumerate
Enumerates this instance in reverse order.
Top
See Also