| DataStoreTGetByIndex Method |
Gets the item at the given index.
Namespace: DigitalRune.GameAssembly: DigitalRune.Game (in DigitalRune.Game.dll) Version: 1.4.0.0 (1.4.0.14427)
Syntax public T GetByIndex(
int index
)
Public Function GetByIndex (
index As Integer
) As T
public:
T GetByIndex(
int index
)
member GetByIndex :
index : int -> 'T
Parameters
- index
- Type: SystemInt32
The zero-based index of the data.
Return Value
Type:
T
The data that is stored at the given index. If the index is out of range, the default value
of
T is returned.
See Also