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

this() public method

public this ( int index ) : TreeNode
index int
return TreeNode
        public virtual TreeNode this[int index]
        {
            get
            {
                if (index < 0 || index >= items.Count)
                    throw new ArgumentOutOfRangeException("index");
                return items[index];
            }
            set
            {
                if (index < 0 || index >= items.Count)
                    throw new ArgumentOutOfRangeException("index");

                value.parent = this.owner;
                value.index = index;
                items[index] = value;
            }
        }

Same methods

TreeNodeCollection::this ( string key ) : TreeNode
TreeNodeCollection::this ( int index ) : objectIList.System