FixedSizeNodeTKey, TValueRead(Int32, TValue) Method

Reads the value at the specified index in the node.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override void Read(
	int index,
	TValue value
)

Parameters

index  Int32
The index at which to read the value.
value  TValue
The value to be read from the node.

Remarks

This method reads the value stored at the specified index within the node's storage. It is typically used during tree operations to retrieve values associated with keys.

Exceptions

IndexOutOfRangeExceptionThrown if the provided index is out of range.

See Also