예제 #1
0
        internal bool method_0(T value)
        {
            RedBlackTree <T> .Node node = new RedBlackTree <T> .Node(default(T));

            node.IsRed  = false;
            node.Right  = this.node_0;
            this.int_0 -= node.method_5(value, this.icomparer_0);
            this.node_0 = node.Right;
            if (this.node_0 != null)
            {
                this.node_0.IsRed  = false;
                this.node_0.Parent = (RedBlackTree <T> .Node)null;
            }
            return(true);
        }