Gets the element at the specified index.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax public T this[
int index
] { get; }
public T this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As T
Get
Public ReadOnly Default Property Item (
index As Integer
) As T
Get
public:
virtual property T default[int index] {
T get (int index) sealed;
}
public:
virtual property T default[int index] {
T get (int index) sealed;
}
abstract Item : 'T with get
override Item : 'T with get
abstract Item : 'T with get
override Item : 'T with get
Parameters
- index
- Type: System Int32
The zero-based index of the element to get.
Return Value
Type:
TThe element at the specified index.
Implements
ISequence T Item Int32 See Also