3 references to DeleteNode
PresentationFramework (3)
MS\Internal\Data\RBNode.cs (2)
570node.LeftChild = DeleteNode(node, node.LeftChild, index); 598node.RightChild = DeleteNode(node, node.RightChild, index - node.LeftSize - node.Size);
MS\Internal\Data\RBTree.cs (1)
434LeftChild = DeleteNode(this, LeftChild, index);