AnimatGuiCtrls.Controls.PropertyBag.PropertySpecCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the entire PropertySpecCollection to a compatible one-dimensional Array, starting at the beginning of the target array.
public CopyTo ( PropertySpec array ) : void
array PropertySpec The one-dimensional Array that is the destination of the elements copied /// from PropertySpecCollection. The Array must have zero-based indexing.
return void
            public void CopyTo(PropertySpec[] array)
            {
                innerArray.CopyTo(array);
            }

Same methods

PropertyBag.PropertySpecCollection::CopyTo ( PropertySpec array, int index ) : void