System.Windows.Forms.TreeNodeCollection.this C# (CSharp) Méthode

this() private méthode

private this ( int index ) : objectIList.System
index int
Résultat objectIList.System
        object IList.this[int index]
        {
            get { return this[index]; }
            set
            {
                if (value is TreeNode)
                {
                    this[index] = (TreeNode)value;
                    return;
                }
                throw new ArgumentException(value.ToString());
            }
        }

Same methods

TreeNodeCollection::this ( int index ) : TreeNode
TreeNodeCollection::this ( string key ) : TreeNode