System.Windows.Forms.FormCollection.IList C# (CSharp) Method

IList() private method

private IList ( object value ) : int
value object
return int
        int IList.Add(object value)
        {
            var form = value as Form;
            if (form == null)
                throw new ArgumentException("wrong value.");

            items.Add(form);
            return items.Count - 1;
        }

Same methods

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