System.Windows.Forms.FormCollection.IList C# (CSharp) Méthode

IList() private méthode

private IList ( int index, object value ) : void
index int
value object
Résultat void
        void IList.Insert(int index, object value)
        {
            var form = value as Form;
            if (form == null)
                throw new ArgumentException("wrong value.");

            items.Insert(index, form);
        }

Same methods

FormCollection::IList ( object value ) : bool
FormCollection::IList ( object value ) : int
FormCollection::IList ( object value ) : void