Gets or sets the element at the specified index.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public T this[
long index
] { get; set; }
Public Default Property Item (
index As Long
) As T
Get
Set
public:
property T default[long long index] {
T get (long long index);
void set (long long index, T value);
}
member Item : 'T with get, set
Parameters
- index
- Type: SystemInt64
The zero-based index of the element to get or set.
Return Value
Type:
TThe element at the specified index.
See Also