private void AddLeft(int min, int max) { if (LeftNode == null) { LeftNode = new IntervalTreeNode(min, max); return; } LeftNode.AddRange(min, max); }