Click or drag to resize
DigitalRuneDequeTItem Property
Gets or sets the item at the specified index.

Namespace: DigitalRune.Collections
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public T this[
	int index
] { get; set; }

Parameters

index
Type: SystemInt32
The zero-based index of the item to get or set.

Property Value

Type: T
The item at the specified index.

Implements

IListTItemInt32
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than 0 or equal to or greater than Count.
Remarks
This indexer is an O(1) operation.
See Also