ComponentFactory.Quicksilver.Layout.MetaElementCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the elements from the collection to the array.
public CopyTo ( Array array, int index ) : void
array System.Array Array that is the destination for copying.
index int Zero-based index in the array at which copying begins.
return void
        public override void CopyTo(Array array, int index)
        {
            if (_isItemsHost)
                base.CopyTo(array, index);
            else
                _externalChildren.CopyTo((UIElement[])array, index);
        }

Same methods

MetaElementCollection::CopyTo ( UIElement array, int index ) : void