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

this() public méthode

public this ( string key ) : TreeNode
key string
Résultat TreeNode
        public virtual TreeNode this[string key]
        {
            get
            {
                if (string.IsNullOrEmpty(key))
                    return null;

                int index = this.IndexOfKey(key);
                if (IsValidIndex(index))
                    return this[index];

                return null;
            }
        }

Same methods

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