/// <summary> /// Initializes a new instance of the BinTree class. /// </summary> public BinTree() { _root = new Root(); }