| BTreeSetIteratorKeyGoTo Method (Key, Byte) | 
 
            Positions iterator at Key object or where Key would be inserted if added to the set. This function is normally only used internally by VelocityDb.
            
 
    Namespace: 
   VelocityDb.Collection.BTree
    Assembly:
   VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
 Syntax
Syntaxpublic bool GoTo(
	Key key,
	byte[] comparisonArray
)
Public Function GoTo ( 
	key As Key,
	comparisonArray As Byte()
) As Boolean
public:
bool GoTo(
	Key key, 
	array<unsigned char>^ comparisonArray
)
member GoTo : 
        key : 'Key * 
        comparisonArray : byte[] -> bool 
Parameters
- key
- Type: Key
 The object to position iterator near
- comparisonArray
- Type: SystemByte
 Contains bytes used for comparing with other arrays for NodeKeys within the set
Return Value
Type: 
Booleantrue if an exact match was found; otherwise false
 See Also
See Also