SortedTreeTKey, TValueGetKeyRange Method
Gets the lower and upper bounds of this tree.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void GetKeyRange(
TKey lowerBounds,
TKey upperBounds
)
Public Sub GetKeyRange (
lowerBounds As TKey,
upperBounds As TKey
)
public:
void GetKeyRange(
TKey lowerBounds,
TKey upperBounds
)
function GetKeyRange(lowerBounds, upperBounds);
Parameters
- lowerBounds TKey
- The first key in the tree
- upperBounds TKey
- The final key in the tree
If the tree contains no data. lowerBounds is set to it's maximum value
and upperBounds is set to it's minimum value.