System.Windows.Forms.TreeNode_Old.RemoveNodeAt C# (CSharp) 메소드

RemoveNodeAt() 공개 메소드

public RemoveNodeAt ( int index ) : void
index int
리턴 void
        public void RemoveNodeAt(int index)
        {
            Nodes.RemoveAt(index);
            for (int i = 0; i < Nodes.Count; i++)
                Nodes[i].Index = i + 1;
        }
        public void Show()