BinarySearchTree<TKey,TValue>.Search method

Recursive function used to find a given value in a subtree where current is the root node.

protected Node<TKey, TValue> Search(Node<TKey, TValue> current, TKey key)

See Also