FifoQueueTItem Property |
Namespace: DHI.Mike1D.Generic.Collections
public T this[ int index ] { get; set; }
FifoQueue{T} accepts null as a valid value for reference types and allows duplicate elements.
This property provides the ability to access a specific element in the collection by using the following syntax: myCollection[index].
Retrieving the value of this property is an O(1) operation; setting the property is also an O(1) operation.