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

ICollection() private method

private ICollection ( Array array, int index ) : void
array System.Array
index int
return void
        void ICollection.CopyTo(Array array, int index)
        {
            var forms = array as Form[];
            if (forms == null)
                throw new ArgumentException("wrong value.");
            items.CopyTo(forms, index);
        }