ProcessQueueTItem Property
Gets or sets the element at the specified index.
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.156 -- Release Build+d9c3c9ff423cb81bc351c70c72797c5bc686ec2e
public virtual T this[
int index
] { get; set; }
Public Overridable Default Property Item (
index As Integer
) As T
Get
Set
public:
virtual property T default[int index] {
T get (int index);
void set (int index, T value);
}
function get_Item(index);
function set_Item(value);
- index Int32
- The zero-based index of the element to get or set.
TThe element at the specified index.
IListTItemInt32 | ArgumentOutOfRangeException | index is less than 0 -or- index is equal to or greater than ProcessQueueT length. |