Click or drag to resize
SequentialSearchSTKey, ValueGet Method
Returns the value associated with the given key in this symbol table.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Object Get(
	Key key
)

Parameters

key
Type: Key
key the key

Return Value

Type: Object
the (boxed) value associated with the given key if the key is in the symbol table and null if the key is not in the symbol table
Exceptions
ExceptionCondition
ArgumentNullExceptionif key is null
See Also