public void Dump(int step = 0) { Console.WriteLine($"{new string(' ', step * 2)}{Item} Radius:{Radius}"); if (LeftNode != null) { LeftNode.Dump(step + 1); } if (RightNode != null) { RightNode.Dump(step + 1); } }