3 references to DeleteNode
PresentationFramework (3)
src\Framework\MS\Internal\Data\RBNode.cs (2)
573node.LeftChild = DeleteNode(node, node.LeftChild, index); 601node.RightChild = DeleteNode(node, node.RightChild, index - node.LeftSize - node.Size);
src\Framework\MS\Internal\Data\RBTree.cs (1)
437LeftChild = DeleteNode(this, LeftChild, index);