Description
Calling target.hash_table.Find will find the value associated with the specified key.
Syntax
trg.hash_table.Find( key )Key - Input the key to get the value associated with it.
Return value
This function returns whatever value was associated with the key.
Sample'---------- Start ----------Function StartDim table trg.hash_table.Add "a", 8 trg.Message( trg.hash_table.Find( "a" ) ) End Function.See also
'---------- Start ----------
Function Start
Dim table
trg.hash_table.Add "a", 8
trg.Message( trg.hash_table.Find( "a" ) )
End Function