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

this() private method

private this ( int index ) : objectIList.System
index int
return objectIList.System
        object IList.this[int index]
        {
            get { return items[index]; }
            set
            {
                var form = value as Form;
                if (form == null)
                    throw new ArgumentException("wrong value.");
                items[index] = form;
            }
        }

Same methods

FormCollection::this ( int index ) : Form