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

IList() private method

private IList ( object node ) : int
node object
return int
        int IList.Add(object node)
        {
            if (node == null)
                throw new ArgumentNullException("node");
            if (node is TreeNode)
                return this.Add((TreeNode)node);
            return this.Add(node.ToString()).index;
        }

Same methods

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