System.Windows.Forms.TreeNodeCollection.IList C# (CSharp) Method

IList() private method

private IList ( int index, object node ) : void
index int
node object
return void
        void IList.Insert(int index, object node)
        {
            if (node is TreeNode)
            {
                this.Insert(index, (TreeNode)node);
                return;
            }
            throw new ArgumentException(node.ToString());
        }

Same methods

TreeNodeCollection::IList ( object node ) : bool
TreeNodeCollection::IList ( object node ) : int
TreeNodeCollection::IList ( object node ) : void