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

IList() private méthode

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

            items.Remove(form);
        }

Same methods

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