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

IList() private method

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

            return items.Contains(form);
        }

Same methods

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